Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Page & Category Menu Bars (http://forum.bytesforall.com/forumdisplay.php?f=10)
-   -   [SOLVED] Child menu flying out way too far (http://forum.bytesforall.com/showthread.php?t=5842)

kerrylim Feb 11, 2010 06:02 PM

[SOLVED] Child menu flying out way too far
 
I am just getting my site set up. I added a child menu under one parent and when I try to click on it, it flies out way to the right and I can't get the pointer to it. Here is the site: http://www.creatingadventures.com - check under Baskets. How do I get the child lined up back under the parent or at least close enough to be able to click on it?

juggledad Feb 12, 2010 07:12 AM

this is caused because of your CSS Insert
HTML Code:

ul.rMenu li {
position:relative;
left:198px;
}

this causes all <li>'s under the rMenu to be shifted. The sub menu is also an <li> so it also gets shifted the 198px. You need another CSS insert to unshift the <li>'s in the sub-menu's. Try this
HTML Code:

ul.rMenu li ul.rMenu-ver li{
left:0px;
border: solid 1px red;
}


kerrylim Feb 12, 2010 11:50 AM

Hurray! It's fixed. Thank you.
(Donation sent yesterday)


All times are GMT -6. The time now is 08:16 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.