• Resolved Swarthydog

    (@swarthydog)


    Hi, I would like to have my header logo to be different on the internal pages than what I have on my home page. Also, I need to remove the sitewide banner from the internal pages as well but keep it on the home page. Is this something that can be handled via css or would i need to change php?

    https://www.antiqueappliances.com/wp

    Thank you for all your help!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • You can hide the banner with css:

    .virtue_banner {
    display:none;
    }
    .home .virtue_banner {
    display:block;
    }

    Changing the logo is a little more trouble. if you don’t need the retina logo you can add your internal logo as the retina then use css to show that one internally and hide your normal one.

    Kadence Themes

    Thread Starter Swarthydog

    (@swarthydog)

    ok thank you for the css, it worked perfectly. I don’t need the retina logo so how would i go about using css to show it internally and not the normal one?

    You can use this css:

    .kad-standard-logo {
        display: none !important;
    }
    .home .kad-standard-logo {
        display: block !important;
    }
    #logo .kad-retina-logo {
        display: block !important;
    }
    .home #logo .kad-retina-logo {
        display: none !important;
    }

    the “retina” logo will show on your internal pages.

    Kadence themes

    Thread Starter Swarthydog

    (@swarthydog)

    Ok the code you supplied above worked to show only the retina logo on my internal pages…yay! However I have a padding issue around the retina logo now and I would like to remove it. I tried using:

    #logo .kad-retina-logo > .container {
    width: 100%;
    padding: 0;
    }

    …but that did not work. You helped me fix it on my home page but now I was hoping there was a css fix for my internal retina logo. Here is a link to an internal page…

    https://www.antiqueappliances.com/wp/appraisals

    Thank you so very much!!

    Your site is in maintenance mode. I can’t remember what I gave you before but if you where then only asking about your home page the css probably just has .home in it. If so just remove that part.

    Kadence Themes

    Thread Starter Swarthydog

    (@swarthydog)

    wow! That worked and so easy…thank you immensely!!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘removing sitewide banner on internal pages and new logo’ is closed to new replies.