• Resolved Anonymous User 12856582

    (@anonymized-12856582)


    I want to make the header image/logo (that I have uploaded to replace my heading with) align to the right side of the page instead of the left. Any help would be much appreciated. Here is my site in case you need it to help me: https://www.olivierandkingsley.com/

Viewing 2 replies - 1 through 2 (of 2 total)
  • First of all, please remove everything down below that @import line from child theme stylesheet.

    and then try putting this in there

    #blog-title {
    	margin-top: 20px;
    	text-align: right;
    }
    
    @media screen and (max-width : 480px) {
    	#blog-title { text-align: center; }
    }

    The logo image itself needs to be edited a little bit, so that the circle on the right (pink one) is close to the right edge. The best is to crop it to fit on both sides.

    Your child theme stylesheet will have that standard comment block at the very top, and then 1 @import line, and then only additional CSS code to overrwrite parent’s.

    Thread Starter Anonymous User 12856582

    (@anonymized-12856582)

    It worked. Thank you so much!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing header image/logo alignment’ is closed to new replies.