Centering the logo and menu in the Expressions theme
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:
123456789101112131415161718#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