Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Weird loading problem in Chrome Re: Weird loading problem in Chrome

#120069
ooredroxoo
Member

As I see the white space is result of the padding applied to the nav.
One way to fix it is

#logo {
/* Add position:relative so creates context */
}

and on the

#logo nav {
/*Add position:absolute
set right:0 or the margin right needed;
set top: 45px (the padding) or the margin needed;
use top and right, not margin-top or margin-right
*/
}

and with this the float on the nav isn’t more needed.

Here on devtools (chrome) worked fine with this solution.