MyBB Community Forums

Full Version: fix checkbox position
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Dears,

please help me i dont know how to fix it or to find the css file to edit it

image one shows the position of checkbox

[Image: 8lhzlcba5y7h.png]


image two when i change margin-left to margin-right in google chrome its ok but where i can find the css file to edit .. i search in global.css, theme.css but i didnt find it

[Image: gap9741yb7yr.png]

the source of css less file from other site can i change it ?
Hi,

are you using a responsive theme?

This responsive theme, is using Bootstrap?

There is where the forms.less come from.

What I would do is to edit the header template (or footer) of your theme (where the bootstrap.css file is), and after the boostrap style I'll add:

<style>
.checkbox input[type=checkbox], ....
{
margin right: -20px;
}
</style>

Note: I wrote only ".checkbox input[type=checkbox], ....", but you have to write all the text.