MyBB Community Forums

Full Version: Right and left Menubg?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to make it so there is a left center and right image for my menubg. But I cannot seem to figure it out. This is my first time going crazy with a theme. The other ones I made where not close to advance as this one. Thanks in advance for the help!
Cant you just define all three properties in your css and add something like the following to your template?
<div class="menu_left"></div>
<div class="menu">Menu code goes here</div>
<div class="menu_right"></div>
Create CSS classes in global.css with names like, for right bg, something like:

.menubg_right {
text-align: right;
}

for left:

.menubg_left {
text-align: left;
}

and recall them in templates like,

<div class="menubg_right">All contents written here would acquire menubg_right class and would be aligned to right.</div>
I am sorry but that doesnt make too much since to me. Although I will try it. I want to have a leaft center and right center being just like the regular current one. I will grab a picture to show what I mean...