MyBB Community Forums

Full Version: fix fixed panel bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi friends i am making a new theme for my forum and i made panel bar at the top with fixed position.

i set
width: 100%;
position: fixed;

but the panel getting out from the right side i am Huh plz help me

sorry if i post this in wrong section
it is because of the padding set for the panel.
If you have set the panel padding 10px (example) then omit the side paddings. like:

#panel {
padding: 10px 0;
}

But that may wipe the text edge clearance. Someone may suggest you to reduce % value or set overflow-x: hidden; but those are poor fixes. The properties actually required are:

#panel {
padding: 10px;
display: block; /* no need to set width 100% */
box-sizing: border-box; /* This should correct the overflow */
}