Thu, 2013-11-14 14:52
Hello!
Im having a small issue with my navigation hover...It's slightly moving from it's original spot when hovering.
http://www.anjadiane.com/wordpress/
any idea how to fix it?
thanks
Fri, 2013-11-15 03:09
#1
Hi epitsenter, It's the
Hi epitsenter,
It's the border causing the movement.
custom.css line 139:
#header #navigation ul.nav > li a { border: 1px solid #fcfcfc;
Then on hover you remove it custom.css line 112
#header #navigation ul.nav > li a:hover { border: none;
Sat, 2013-11-16 10:10
#2
thanks! another small
thanks!
another small question about footer alignment? how could i vertically align both - footer menu and copyright text?
Mon, 2014-03-03 09:27
#3
You have to do this at the
You have to do this at the specific ID's or classes.
In your case you should add the vertical alignments on the following spots:
1. custom.css line 352
#footer ul li a { font-weight: 300; vertical-align: your code; }
This will edit both menu buttons "About" and "Facebook" in the footer.
For the text you need to find the following code:
2. custom.css line 302
#copyright p { margin: 0px; vertical-align: your code; }
This will edit the copyright text in the footer.
Hope this helped you.