I have a site under construction: http://atlas.gle.no.
Is it possible
to move the superfish bar a bit to the right?
to change the background color of the selected menu item?
to increase the superfish font size?
I have a site under construction: http://atlas.gle.no.
Is it possible
to move the superfish bar a bit to the right?
to change the background color of the selected menu item?
to increase the superfish font size?
Comments
Comment #1
Apollo610 commentedjosgle -
Everything that you would like to do regarding formatting Superfish can be done via manipulating the CSS. Superfish it fairly flexible that way.
For instance, if you wanted to align the menu to the right, you could add this code to your style.css file in default/files/color/*...
#superfish {
float:right; /* align to the right */
font-size:16px;
}
If you want to move the menu slightly to the right, change the float:right line to
margin-left:10px;This will align your menu to the right of the menubar and increase the font size to 16px... color can also be manipulated various ways. If you're unsure how CSS works it would probably be worth your while to read up on it - it's a good tool to learn, particularly if you want to get the most out of web development.
Hope this points you in the right direction -
Comment #2
Jeff Burnz commented