How to align child categories in center?

Status
Not open for further replies.

DuckBre

Active Member
339
2011
25
0
Im using wordpress based blog, and now i have problem aligning child categories in center under parent categorie. Can someone at least tell me what do i need to search for exacly in .css?
 
3 comments
bro find the class in tag property and search that class name in .css file

.example {
float:center;
}

ive never found a float center to work very well but unless there are other floatings in the div you should use.

.example {
margin-left:auto;
margin-right:auto;
}
 
Status
Not open for further replies.
Back
Top