Jump to content

Recommended Posts

Posted
5 minutes ago, Patrick Ewing said:

Curious on how to center a logo in my forum. its on the left side, but i want to center the logo. how do i do that?

Add in your Custom CSS

#elLogo img {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
}

 

Posted

Find in yor Custom CSS

.site_intro {
        display: flex; 
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
}

and remove row display: flex;

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...