How to right align the header text in the gateway theme?

  • Unknown's avatar

    currently my header image is a subdued American flag. The header text is center aligned on the image and makes the first part of my company name hard to read. I would like to be able to move my company name to the right of the image on the black line to make my company name stand out.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello there!

    Dropping this code in your custom CSS area should do the trick:

    .site-branding {
    	text-align: left;
    	background-color: rgba(0, 0, 0, 0.45);
    	padding-bottom: 3.2em;
    }

    Now, that code will also add a bit of a darker background as the text was still a bit hard to read. If you don’t want that added, then just use this code instead:

    .site-branding {
    	text-align: left;
    }

    Let me know if that doesn’t work!
    Sage

  • The topic ‘How to right align the header text in the gateway theme?’ is closed to new replies.