MyBB Community Forums

Full Version: Category Bars
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to customize my skin and I am pretty much finished I am only trying to change the color of the category titles. Screen Shot link below, they are circled in black. If you can help I would greatly appreciate it. Big Grin


http://i1.tinypic.com/mjxy55.jpg
heloo there

pls refere to this tutorial, that will shed more light about that
usually it's the Table Header class. and you should u CSS to customize it.
u may use whether and image or color. in Mybb here we use images/.

Customize / Start your theme! Wrote:Background: here you may add the background for that certain class you are working on.
this is a very improtant part of editing the theme, for example, if you'd like to add the image for the background of a certain class, we will have to follow this code:
#026CB1 url(images/thead_bg.gif)
there is no need for the #026CB1, but u can keep it in case u want a certain color to appear if the image took a little bit time to load.
the url(images/thead_bg.gif) is the actuall image code, there are some other attributes that will aid u working with image such as

repeat-x : this will repeat the image Horizontaly

repeat-y: this will repeat the image verticaly

repeat: this will repeat it both sides

no-repeat: there will be no repeating

top, center, bottom, value :will set the position of this image.

left, center, right, value: will set the horizontal position of the image



so the code will then look (e.g. #026CB1 url(images/thead_bg.gif) top left repeat-x).

this is applied mostly to the table headers, rows etc... as there if u look at the image that appears there, u can see it's just a little one, so using the repeating this image will look like a huge.

many regards
thanks zaher1988! Smile
make use of http://www.w3schools.com for all your styling needs Smile