I'm working on a beta page for a new layout, and the display is showing up differently on IE and FireFox.
The most pressing issue is that there should be a series of select menus on the left and then a paragraph about a selected option showing on the right.
It displays correctly in IE, but in FireFox it shows that paragraph under the select menus.
I've looked at my CSS and tinkered around with it but I can't seem to fix it.
I was hoping somebody might be able to help me.
<!-- m --><a class="postlink" href="http://www.printfreegraphpaper.com/beta3.html">http://www.printfreegraphpaper.com/beta3.html</a><!-- m -->
Thanks so much.It shows under the menu because that is where your CSS says to put it. If you want it to appear next to the select menus then change
.sum{float:none;width:361px}
to
.sum{float:left;width:361px}Thanks Stephen!
I've used CSS for some time now, but it still trips me up every now and then. Your fix works great!
Thanks for your help.
The most pressing issue is that there should be a series of select menus on the left and then a paragraph about a selected option showing on the right.
It displays correctly in IE, but in FireFox it shows that paragraph under the select menus.
I've looked at my CSS and tinkered around with it but I can't seem to fix it.
I was hoping somebody might be able to help me.
<!-- m --><a class="postlink" href="http://www.printfreegraphpaper.com/beta3.html">http://www.printfreegraphpaper.com/beta3.html</a><!-- m -->
Thanks so much.It shows under the menu because that is where your CSS says to put it. If you want it to appear next to the select menus then change
.sum{float:none;width:361px}
to
.sum{float:left;width:361px}Thanks Stephen!
I've used CSS for some time now, but it still trips me up every now and then. Your fix works great!
Thanks for your help.