(2016-12-26, 11:37 PM)uForums Wrote:(2016-12-26, 11:18 PM)Krados Wrote:(2016-12-26, 10:41 PM)uForums Wrote:(2016-12-26, 10:19 PM)Krados Wrote: Remove the following pieces:
You technically cannot set right: 0 if you have already set left: 0, same thing with top and bottom.right: 0; bottom: 0;
This will make the forum links work.
The new styling should be:
#onlinedevelopersnoti { width: 100%; position: fixed; top: 0; left: 0; }
same, tried and not fixed...
I've used inspect element to edit the styling and I used this styling, and it worked all fine.
You have an inline element style giving the following style:#onlinedevelopersnoti { width: 100%; left: 0; position: fixed; top: 0; }
You should remove it. It's useless because DIV's are display: block by default and the external css style will override the margin-top: 0px;. Also you shouldn't add a unit to anything if the property value is 0, for example you should use "top: 0" rather than "top: 0px".display: block; margin-top: 0px;
If you still need assistance regarding this problem I'd be happy to help.
Now it's working, you can to click on the links, but the menu isn't floating![]()
How do I fix it?
I think you've done something wrong as it's working good for me.
What makes the menu float is the "position; fixed" property. And if it's put there correctly the code is supposed to go all good.