• paul4ut

    (@paul4ut)


    If you go to missionuganda.info, you will notice right away that the navigation text in the righthand column is justified left and spilling off the graphic stamp. I need this centered on each stamp, but I’m not sure where to go to make this change.

    Can anyone help?

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Jonas Grumby

    (@ss_minnow)

    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.

    Thread Starter paul4ut

    (@paul4ut)

    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

    Clayton James

    (@claytonjames)

    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

    Thread Starter paul4ut

    (@paul4ut)

    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.]

    Clayton James

    (@claytonjames)

    The file you want is where I told you it could be found. “It can be located in the WP Africa theme folder; https://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..

    Clayton James

    (@claytonjames)

    Spaces in directory names are such a pain in the rear.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Centering type’ is closed to new replies.