Home › Forums › CSS › Weird loading problem in Chrome › Re: Weird loading problem in Chrome
January 7, 2013 at 2:25 am
#120069
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.