Custom CSS or HTML code to Center the site Footer

I’m using a ThemeFlood theme called Photogenic. It offers more option than any theme I’ve seen - the list of options scrolls on and on. However, it offers no alignment options for the Footer. I have use custome CSS code in the past and am wondering if I could do the same to obverride the right alignment of the Footer to center alignment? Can someone help please. Thanks so much.

@jedijunk Thanks for your kind words about my theme.

Here is some CSS code I have tested that will align the footer center:

div#footer {
    float: none;
    display: block;
    margin: 0;
    padding: 5px;
    text-align: center;
}

div#breadcrumb,
div#lastUpdated {
    display: block;
    margin: 0;
}

That should be all you need.

-Will.

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.