Center Align Multiple Logo Header

Hi there,

I tried to set alignment the logo header in the center. When i tried with this code :
.x-brand {
width: 100%;
text-align: center;
}

Here is what i get

while i want the display the all logos in a row. What can i do to achieve this? Can you help me?

Thanks before,

Hi,

You can try this code instead.

.x-logobar a.x-brand.img {
    display: inline-block;   
    width: auto;
    vertical-align: middle;
    float: none;
}

Hope that helps.

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