The new front page design seems to have caused a horizontal scroll bar to 
appear on every page it is used on, no matter what sizr the browser window is 
resized to. I traced this to the new top text links - more specifically to the 
style. I played around with fixing it and the easiest way I could find was to 
simply remove the 4 pixel left padding as follows:

div.osol__top__div {
        height: 1.2em;
        font-size: 9pt;
        font-family: sans-serif;
        position: absolute; top: 0; left: 0;
        padding-left: 4px;  ****REMOVE THIS LINE****
        border-bottom: .5px solid #ffc726;
        width: 100%;
        background-color: #eee;
        height: 12pt;
        line-height: 11pt;
}

Unfortunately this means that the first text link - codereview - is then jammed 
up hard against the left-hand side of the page. To fix, simply add a 
non-breaking space before it:

<div class="osol__top__div">
<div style="float: left">&nbsp; ****NBSP ADDED HERE ****
<a href="http://cr.opensolaris.org";>code review</a>&nbsp;&nbsp;
<a href="http://src.opensolaris.org";>source</a>&nbsp;&nbsp;
<a href="http://hg.opensolaris.org/sc/src/";>repo</a>&nbsp;&nbsp;

That seems to fix it on Firefox at least. You might also want a space between 
the words "code" and "review". ;-)

Cheers

Andrew.
 
 
This message posted from opensolaris.org
_______________________________________________
website-discuss mailing list
[email protected]

Reply via email to