• thephysiquemechanic

    (@thephysiquemechanic)


    After go daddy automatically updated my WordPress version my logo no longer appears on the top of any of my pages.

    Can anyone take a look and explain why?

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter thephysiquemechanic

    (@thephysiquemechanic)

    Also, none of my pictures next to my blog names are showing up anymore either.

    Thread Starter thephysiquemechanic

    (@thephysiquemechanic)

    And now i also realized all the text in all my blog posts are all the way to the left of the screen making it hard to read.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, first, in your custom CSS, I’ve disabled the two following CSS rules and your logo comes back and the content narrows so that there is margin on the left and right sides of the content.

    .site {
      max-width: 100%;
      width: 100%;
      font-family: 'Montserrat', sans-serif !important;
    }
    .site-branding {
      display: none;
    }

    Let’s start with removing those two from your custom CSS and see how things look and let me know.

    Thread Starter thephysiquemechanic

    (@thephysiquemechanic)

    Hey! Thanks that seemed to do the trick. Only issue is the logo shows on the first page (landing page) how can i eliminate that only off that initial page and leave for all the rest of the pages? I think that is why my friend who did the landing page initially put that code in there.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    If you wish to remove the logo from your front page, we can use the unique page id CSS class from the opening body html tag like this to hide it.

    .page-id-2 .site-logo {
    	display: none;
    }
    Thread Starter thephysiquemechanic

    (@thephysiquemechanic)

    hmmm, do i put that in the additional css area on the theme too? I tried it and the logo was still present on the first page (main page that shows up on https://www.thephysiquemechanic.com)

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Oops, my bad. For your main page, use this instead, and yes, add it to Additional CSS.

    .home .site-logo {
    	display: none;
    }
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘No logo showing after WordPress update’ is closed to new replies.