Centering the logo and menu in the Expressions theme

Please Note: Theme customizations go beyond the scope of our support services and this article is provided solely as a courtesy to our customers. Please take a moment to review the Scope of our Support.

Question:

How to center the logo and navigation menu in the Expressions theme?

Solution:

You have to go to the theme options panel and write the following code in the Additional CSS Style field:

#navigation-container {
float: none;
margin: 10px auto;
width: 600px;
padding-bottom:17px;
}
#logo-container {
float: none;
margin: 0 auto;
}
#header {
padding: 10px 0;
}

#site-description {
float: none;
text-align: center;
}

If you need to apply further tweaks, you can also learn how to customize your website using CSS in: http://pexetothemes.com/support/knowledgebase/how-to-customize-your-theme-with-firebug/

Pexeto

Was this useful? 7