Logo Text is backwards

I am using the Agency Site from Design Cloud When typing in my Text for Logo it is backwards. How do I fix this

Hi George,

Thank you for reaching out to us. To resolve the issue, navigate to X > Theme Options > Header > Logo Text > Logo Letter Spacing and set the value to 0 or greater (see screenshot)

Cheers!

Thanks I just place a logo instead
So this is resolved. On question I do have is I have this CSS
a.x-brand.img:after {
content: “CODE Munkee”;
font-size: .80em;
color: white;
width: 135px;
margin-left: 25px;
float: center;
}

How do I make it so that it is underneath the logo instead of the side of it.

Hey George,

Try updating it to:

a.x-brand.img:after {
    content: "CODE Munkee";
    font-size: .80em;
    color: white;
    width: 135px;
    display: block;
    margin: 10px 0;
}

Hope this helps.

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