Check the style.css and see what it says for:
#sidebar ul li
see if one of the properties for that ID is text-align: center;
If not, try adding that. If it messes up other things, try putting that CSS property into
#sidebar ul li h2
instead.
I don’t have a file called “style.css.” Here are the css files I do have. Can you tell which of these it might be?
colors – classic -rtl.css
colors-classic.css
colors-fresh-rtl.css
colors-fresh.css
dashboard.rtl.css
dashboard.css
farbtastic.rtl.css
farbtastic.css
global-rtl.css
global.css
ie-rtl.css
ie.css
install-rtl.css
install.css
login-rtl.css
login.css
media-rtl.css
media.css
plugin-install-rtl.css
plugin-install.css
press-this-rtl.css
press-this.css
theme-editor-rtl.css
theme-editor.css
theme-install.css
widgets-rtl.css
widgets.css
I think that SS_Minnow may have been referring to the style sheet for the theme you are using. It can be located in the WP Africa theme folder;
//missionuganda.info/wp-content/themes/WP Africa/style.css
OK, I went to the WP Africa theme folder and opened the “style-ie6.css” file. If you go to missionuganda and look in the far righthand column, the subject of each navigation tab is flowing off to the left. I’m trying to center this type. By looking at the content of “style-ie6.css” can anyone tell me which “left” needs to be made “center” to correct this?
[Mod Note: Chunk of code removed. If you want to post large blocks of code, please use a pastebin.]
The file you want is where I told you it could be found. “It can be located in the WP Africa theme folder; http://missionuganda.info/wp-content/themes/WP%20Africa/style.css”
It is named style.css , not “style-ie6.css”
the subject of each navigation tab is flowing off to the left. I’m trying to center this type
Find this:
#sidebar ul h2 {
background : url(images/sidebartop.jpg) no-repeat;
width: 210px;
font-weight : 100;
font-size : 19px;
margin : 20px 0 5px 10px;
padding : 18px 0px 18px ;
color : #111111;
text-align : left;
text-decoration : none;
And change it to this:
#sidebar ul h2 {
background : url(images/sidebartop.jpg) no-repeat;
width: 210px;
font-weight : 100;
font-size : 19px;
margin : 20px 0 5px 10px;
padding : 18px 0px 18px ;
color : #111111;
text-align : center;
text-decoration : none;
That will center the titles in the ribbon images..
Spaces in directory names are such a pain in the rear.