christian_w 0 Report post Posted March 18, 2011 On my page http://krimtheo.criminologia.de each sub-menu item beneath the heading "Kriminalit?¤tstheorien" displays a 15px wide border on the left side on mousehover. #primary-nav .menu-item-110 a:hover{ border-left: 15px solid #FF0000;} I am quite happy with that result but if you take a close look you'll notice that a) the upper edge is not totally straight but a little chamfered and the text links indent quite a bit on mouseover. I'd very much appreciate suggestions how to prevent these issues. Share this post Link to post Share on other sites
catrina 103 Report post Posted March 18, 2011 What custom CSS did you use to make that look possible? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
christian_w 0 Report post Posted March 18, 2011 Hey Catrina, I am using a different color for each menu-item. E.g.: #primary-nav .menu-item-110 a:hover{ border-left: 15px solid #FF0000;} #primary-nav .menu-item-111 a:hover{ border-left: 15px solid #FF7400;} That's it. There are no more modifications on that submenu. Share this post Link to post Share on other sites
kastelic 6 Report post Posted March 19, 2011 Try reducing the left padding on the hover stated anchor tags like this: #primary-nav a:hover {padding-left:2px;} As for the chamfered edge, I'm mystified. Perhaps someone else knows the answer? Share this post Link to post Share on other sites
christian_w 0 Report post Posted March 19, 2011 One of two problems solved. ... and again: Jimmy, thank you! Share this post Link to post Share on other sites
peterluit 0 Report post Posted March 19, 2011 Hi Christian, I just posted a question in this forum about integrating icons in the menubar, I see that you did it and even colored the submenus. Could you please explain to me how you did that? (You could also e-mail me at peter[at]luit[dot]nl) Thanks! Peter Share this post Link to post Share on other sites
christian_w 0 Report post Posted March 19, 2011 Hi Peter, just have a look at this posting: http://www.pagelines.com/forum/topic/7225 Share this post Link to post Share on other sites
kastelic 6 Report post Posted March 19, 2011 #primary-nav .menu-item a{border-top:none;} I think this is a common thing with thick borders meeting thin borders and it depends on how each browser draws their borders. Share this post Link to post Share on other sites
christian_w 0 Report post Posted March 19, 2011 You really deserve your Karma-points here! Thanks so much, Jimmy. The menu looks good now in Firefox, too. Share this post Link to post Share on other sites