Shift logo down - LuxuryCars Template

Latest Reply from Grace at 2016-07-04 03:52:48
How do I move the logo position downward on the LuxuryCars template?
Hi!

You can move a logo down by using the margin-top property. But in this case, your logo will overlap information of pages that have no slider. If you still want to move the logo you need to find the following code in the style.css file located in the theme directory:

#logo {
position:absolute;
}


and add the margin-top property. For example:

#logo {
position:absolute;
margin-top:66px;
}


Worked like a charm, but how do I move the logo to the left or right as well?
Hi!

You can move your logo to the left or right by using the same property. Here you can read a detailed article about it:
http://www.w3schools.com/css/css_margin.asp

Leave a reply

Add codeAdd image