• Resolved hamster_rave

    (@hamster_rave)


    Hi,
    I just updated the Hatch theme. Although my website is on a child theme, I lost some changes I made (I had the sidebar on the homepage changed from left to right, for example).
    https://www.samverhaert.com

    I can’t remember how I made this changes. I still have the old child theme backed up. Is there a way to go back? Or can anyone help me to change the header image from right to left, and the sidebar from left to right?

    Thank you,
    Sam

Viewing 1 replies (of 1 total)
  • Thread Starter hamster_rave

    (@hamster_rave)

    Ok, item resolved. Apparently I didn’t make the changes in the style.css of my child theme. How did I find out?
    I compared the new style.css, and the backed-up version I had before. There is a function in word to compare two documents. So I found out you need to change this css:

    #author-bio {
    float: left;
    width: 27.65957446808511%;
    }
    #header-banner {
    width: 68.08510638297872%;
    float: right;

    into this:

    #author-bio {
    float: right;
    width: 27.65957446808511%;
    }
    #header-banner {
    width: 68.08510638297872%;
    float: left;

    Peace of cake!
    Sam

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: Hatch] Moving sidebar on static home’ is closed to new replies.