I want to suggest that the Top Logo of the site is centered instead of on the left...


bugmenot

Still Fresh
Joined
Oct 8, 2021
Messages
13
Website
discorduserinfo.pro
I just think that it would look better that way...

I already coded an example myself with the inspect tool...

BEFORE:
1.PNG


CSS code:

CSS:
.p-header-logo {
    vertical-align: middle;
    margin-right: auto;
}
   
.p-header-content {
    padding: 4px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

AFTER:
2.PNG



CSS code:

CSS:
.p-header-logo {
    vertical-align: middle;
}

.p-header-content {
    padding: 4px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

What do any of you think?
 
Last edited:
Back
Top