How to customize something on website CSS?

Of course, CSS / HTML knowledge is required for something like that. If you don’t know what is CSS/HTML then please check out my services: http://iwinter.com.hr/support/?page_id=1870

I suggest using FIrefox. In new version of Firefox you should press CTRL+Shift+K
Or you can use Firebug extension, so install it and run.

It works on same principle.

Check out this screen for instructions how to find some element etc…

css_edit

You should enter your custom code into:

templates\bootstrap2-responsive\assets\css\custom.css, for example in this case:

bootstrap2-responsive is template folder which you using, new versions template is selio so then path is:

templates\selio\assets\css\custom.css

div.options .pull-right{
    display:none !important;
}

Of course you should refresh your website after that, maybe even few times…

Check out this what you can do after that:

css_edit_2

For backend/admin it’s almost same thing, just add your custom css code into: admin-assets\style\custom.css

If this doesn’t help, you don’t have time or knowledge then you should employ freelancer or ask for my service…

Freelancers can be found on:

https://www.odesk.com

https://www.freelancer.com

https://www.elance.com

http://iwinter.com.hr/support/?page_id=1870

 Example for homepage slider (2 screenshots):

Screenshot_1 Screenshot_2

For above case you should add in custom.css to overwrite existing css defined sizes, example:

#myCarousel{height:491px}

.wrap-map{height:488px}

If you using WordPress theme check this: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/

Example header opacity in selio template:

header-opacity