
Originally Posted by
Williamr4j
Thank you ghealy44,
However I have tried that and I am still not finding a good solution, if possible can you mock it up with what I have so I can see it working?
Thank you.
Hi,
Those are tough to do when an arrow is thrown into the mix. 
I remember doing something similar once before.
http://www.css-lab.com/test/mossay/test-1.html
If you view the page source you will find the CSS as an internal stylesheet.
The trick was to increase the widths on hover to allow the arrow to show, at the same time I had to set a negative right margins so the other floats did not drop.
The width increase was the same as the length of the arrow, in that case it was 8px.
Code:
/* all the anchor widths change on hover */
#home a {width:102px;}
#news a {width:75px;}
#service a {width:114px;}
#store a {width:85px;}
#network a {width:106px;}
#about a {width:94px;}
/* increase widths by 8px on hover */
#home a:hover {width:110px; margin-right:-8px;}
#news a:hover {width:83px; margin-right:-8px;}
#service a:hover {width:122px; margin-right:-8px;}
#store a:hover {width:93px; margin-right:-8px;}
#network a:hover {width:114px; margin-right:-8px;}
Bookmarks