Changing Menu Bar to Top Rather Than Bottom in TRVL
-
Hi,
I’d like to change the menu bar to the top or left side of the homepage in my TRVL themed site. How do I do this by editing my site’s CSS?Thank you, thank you!
The blog I need help with is: (visible only to logged in users)
-
omgsalonbuzz
I tested the trvl theme but not the premium trvl theme; I’d think you’d be able to place a menu on the top of the page using Appearance/Menus without having to resort to CSS. However I did notice that this theme seems to be a bit challenged on menu location placement.Maybe someone else has some input on this.
Cheers!
-
Yeah, it defaults to the footer, so Appearance–>Menus doesn’t help. I think it is a CSS issue.
-
You should be able to do that with absolute positioning.
Here is an example that will move the main navigation menu in the TRVL theme from the bottom to the top and add a little padding to give it room:
body { position: relative; padding-top: 52px; } .navigation-main { position: absolute; top: 0; } -
-
- The topic ‘Changing Menu Bar to Top Rather Than Bottom in TRVL’ is closed to new replies.