Widgets move above footer on Graphene 1.6.(only with Firefox)
-
Admin
Looks like one of your widgets have extra closing
</div>
, which is causing the issue.It looks like the width of the content area, combined with the width of the sidebar, is too wide for the page, forcing the sidebar into the bottom of the content area.
To temporarily fix, add this to your child theme or custom css box:
#sidebar1, #sidebar2 {
width: 283px;
}@ Syahir,
His container width = 970px
His content main width = 646.875px
His sidebar width = 283.125
I can’t figure out the exact math… but changing the sidebar to 283 was able to bring the sidebar up to the top again.
Admin
Hurm.. if that’s the case, then the solution will be as easy as setting the column width options to round numbers instead.
Regarding the maths:
646.785 + 283.125 + (10 x 4) = 970
where (10 x 4) = 10px gutter on left and right of the container each, and 20px gutter between the two columns.
Admin
I believe it’s down to browsers not handling decimal places perfectly..
—
Sent via Android using Tapatalk. Please excuse my brevity.
You must be logged in to reply to this topic.