It appears that one of the logos is lower, it is not specific to the logo, it happens in that space, regardless of what image/logo is used. Url is propmoney.com
Thanks in advance.
A user encountered an alignment issue in the Empire Theme where one logo consistently appears lower than others in a logo list, regardless of which image is used in that position.
Solution Provided:
Multiple community members offered the same CSS fix:
margin-top: 0 and margin-bottom: 10px (or 2.5rem) to .logolist--itemOutcome:
The original poster confirmed the CSS solution successfully resolved the alignment problem. Another user also reported the fix worked when applied to their Logo List’s custom CSS section.
It appears that one of the logos is lower, it is not specific to the logo, it happens in that space, regardless of what image/logo is used. Url is propmoney.com
Thanks in advance.
Hi @thekenstar
You can try with this code.
Follow this:
Go to Online Store->Theme->Edit code->theme.css->paste bellow code in top of file
@media screen and (min-width: 1280px)
.logolist–item {
margin-top: 0 !important;
margin-bottom: 10px !important;
}
If you feel my answer is helpful, like it or mark it as a solution. Let me know if you have any questions.
Best regards,
Richard | PageFly
@thekenstar can you please share your website link?
yes, please try this code
@media screen and (min-width: 1280px) {
.logolist--item {margin-top: 0;margin-bottom: 2.5rem;}
}
That worked! Thank you so much.
I pasted the code into the custom CSS section of the Logo List and it solved this issue for me.