Can anyone tell me what I would do with the CSS to make the primary links across the top be centered rather than flush right?
Thanks!
Can anyone tell me what I would do with the CSS to make the primary links across the top be centered rather than flush right?
Thanks!
Comments
Comment #1
interface-web design commentedTo make the menus centered, please add these classes in style.css (of the theme folder) file at the end:
ul.primary-links li a, ul.primary-links li a:link, ul.primary-links li a:visited {
display:inline;
}
ul.primary-links li {
display:inline;
float:none;
}
ul.primary-links {
float:none;
text-align:center;
}
Comment #2
tmccartney commentedThank you!
Comment #3
interface-web design commentedComment #4
OnthegOinOz commentedHi,
I tried to use the code listed without success... I suspect it is because i have the following code already present in my style.css. Would you mind assisting me getting this right to center my primary links.
Thanks
Comment #5
OnthegOinOz commentedWhilst you are there I also need to center the logo... I have tried several options offered by users including http://drupal.org/node/456186 but without luck....