Hi,
I have a main menu bar at the top of my page. Now my #LinkToMenu
fails at resizing and such, even if there's an position: relative
. But it work fine if I set a specific width on the #mainmenu
style, which I don't want it to. I even tried width: auto
, with no luck.
<div id="mainmenu" style="position: relative;">
<div id="LinkToMenu" style="position: absolute; right: 130px; top: 10px;">
<a href="home.php">Home</a>
</div>
<img src="images/mainmenu_logo3.png" style="position: absolute; top: 2px; left: 210px; ">
What's the problem? How can I solve this?
The image with nearly same settings works fine at resizing and so, but not the barlinks?