• Resolved havingfun

    (@havingfun)


    I am using the Creativix theme. The links on the bottom footer on my homepage are not centered. How can I center them?

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Havingfun,

    Ok its just a few amends in the CSS you need to change, replace :

    #footer .footer_right ul {
        float: left;
    }

    with

    #footer .footer_right ul {
       float: none;
        clear: both;
        margin: 0 0 0 153px;
    }

    AND

    #footer .footer_right {
        float: right;
        margin-right: 25px;
    }

    with

    #footer .footer_right {
        float: none;
    }

    I think that should solve it for you

    Thread Starter havingfun

    (@havingfun)

    J…sorry to ask, but which template in CSS would I find this code to make these changes? I was looking in the footer.php and index.php files but could not locate the codes to modify.

    In wordpress on the left set go to Appearance then Editor. In there you can access your webfiles. To apply the CSS changes above you will need to go to the file style.php. However please be careful before editing any files if you are not confident, make sure you make backups incase anything goes wrong.

    Thread Starter havingfun

    (@havingfun)

    J…Thank you so much! It worked perfectly. Thanks for taking the time to help me out.

    No problemo, glad it helped.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘The footer is not centered’ is closed to new replies.