Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'banner'

Home / Forums / Search / Search Results for 'banner'

Viewing 20 results - 381 through 400 (of 1,614 total)
  • Author
    Search Results
  • #224882

    Hey Gert,
    This css should work for you:

    .page-id-343 #kad-banner #topbar {
        display: none;
    }

    Hannah

    #224808

    Hey,
    So the current setup will show the mobile menu below 992px and it also targets tablet screens like 1024. At what point are you wanting that switch to take place?

    Some example css if you want it to switch sooner

    @media (max-width: 1100px) {
    #kad-mobile-banner {
        display: block;
        height: auto;
    }
    .kt-header-position-above {
        display: none;
    }
    }

    Ben

    #224702

    Hello,

    Whenever I turn on “sticky mobile menu”, I get this empty white space between my logo and slider.
    Please let me know how I can remove the white space.
    The div tag id for the space is “kad-mobile-banner-sticky-wrapper”

    URL:

    Thank you,

    Jooin

    #224701

    Hello,

    Whenever I turn on “sticky mobile menu”, I get this empty white space between my logo and slider.
    Please let me know how I can remove the white space.
    The div tag id for the space is “kad-mobile-banner-sticky-wrapper”

    URL:

    Thank you,

    Jooin

    In forum: Virtue Theme

    In reply to: Secondary Logo Option

    #224587

    Try changing the CSS to this instead and let me know if it works for you:

    .page-id-4768 #kad-banner #logo img{
        content: url(https://www.rebeccagallagher.com/wp-content/uploads/2019/05/RG-Audio-Logo.jpg);
        max-height: 150px;
    }

    -Kevin

    In forum: Virtue Theme

    In reply to: Secondary Logo Option

    #224555

    Hey Dean,
    I think this css will work for you:

    .page-id-4768 #kad-banner #logo {
        content: url(https://www.rebeccagallagher.com/wp-content/uploads/2019/05/RG-Audio-Logo.jpg);
        max-height: 150px;
    }

    Just paste that into your custom css box in Theme Options > Advanced Settings.
    To do this on multiple pages you will just need to duplicate the css and add the specific page id’s.

    Hannah

    #224531

    Hey,
    For the lightbox issue, you have this css:

    div#topbar {
        position: fixed;
        width: 100%;
        z-index: 10000;
    }

    Change to this:

    div#topbar {
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    In terms of preventing the overlap with the topbar you can add this:

    #kad-banner {
        padding-top: 46px;
    }
    #kad-banner #topbar {
        top: 0;
    }

    Let me know if that helps!

    Ben

    In forum: Pinnacle Theme
    #224443

    you know how you have a banner on all of your pages at the top. My banner is always the same on all pages. It only shows up on the home page. The other pages there is only content.

    #224366

    I just have one banner but I want it on all the pages the same. The only thing I have found so far is changing code. but I have done it before I don’t remember changing any code. It seemed straight forward.

    Thanks for the help.

    Rocky

    #224199

    Hey,
    Try adding this to your custom css box in Theme Options > Custom CSS:

    #kad-banner #topbar .topbarsociallinks li a:hover {
        background: rgba(160,160,160,.1);
    }

    Hope that helps!

    Hannah

    #223833

    Hi, I have managed to code an opacity on my page header images… my next thought was to make the background color something like #000000, thinking the transparency of the image would show the black a little, muddying my banner images on the fly and therefore my white Title text would work top of on any photo (no matter its values) in the headers without my having to photoshop each header photo. Do you think this is possible? I’m researching that I should do something with position, z-index, and background color rgb (0, 0, 0, 0.7) or something along those lines. I keep trying different attempts in the custom CSS with no success.

    You can see on this demo blog post page that my header image looks a little washed out – that is at an opacity of 0.75. So assuming the background is white. I wanted the hidden background behind that image to be black instead. Hope this makes sense!

    #223518

    ok, Here is the css,

    .page-id-44392 #thelogo:after {
        content: url('https://dbg-dev.mystagingwebsite.com/wp-content/uploads/2019/04/dbg-baby-double-logo-banner-01-1.png');
        display: block;
    }
    .page-id-44392 #thelogo img {
        display:none;
    }

    It’s worth noting that this is generally a really bad idea for your users. And not something that any of our themes would have options for. Logos help the user provide a grounding for how to interpret the rest of your site. If you remove it or change it only for one page that creates unnecessary confusion.

    I hope that helps!

    Ben

    #223467

    Try adding this to your custom css box in Theme Options > Advanced Settings:

    @media (min-width: 768px) {
    div#kad-banner-sticky-wrapper, header#kad-banner {
        min-height: 110px;
    }
    }
    @media (max-width: 768px) {
    .container.mobile-header-container {
        margin-top: 60px;
    }
    }

    Let me know how it works for you!

    Hannah

    #223445
    This reply has been marked as private.
    #222975
    This reply has been marked as private.
    #222859

    Hey,
    1. You can adjust this from Settings > Page Builder > Row/Widget Bottom Margin.

    2. You can add this to your custom css box in Theme Options > Custom CSS:

    .infobanner .home-message {
        background: rgba(43, 201, 255, 0.3);
    }

    Hope that’s helpful!

    Hannah

    #222660

    I need some understanding, please. I am trying to understand the php and css files and filenames so that I can make css changes without so many questions. I would like to change the size of the title on some of my pages. I found the following posted to the support forum to change the title on the single-portfolio page

    .single-portfolio h1.entry-title {
    color: #444;
    font-size: 30px;
    }
    .page h1.entry-title { this works for all pages
    color: #444;
    font-size: 30px;
    }

    Is the single-portfolio the page or the template? I found the content-singleportfolio.php file which appears to outline the classes.

    please see //jpriceanalytics.com/services-dnp/ this page uses site origin page builder and the the feature template
    I have inserted the code below in the advanced css and see the lines delineating the banner, header , and title. what is contained in the space between the lines? It appears to me that .page-header contains more than the h1.entry?

    How do I determine what the services-dnp page consists of?

    header#kad-banner {
    border-bottom: 1px solid #e6dfdf;
    padding-top:0px
    padding-bottom:0px
    }
    .page-header {
    border-top: 1px solid #e6dfdf;
    border-bottom: 1px solid #e6dfdf;
    }
    .page h1.entry-title {
    color: #444;
    font-size: 30px;
    border-top: 1px solid #e6dfdf;
    border-bottom: 1px solid #e6dfdf;
    height: 1px;
    margin-bottom: 1.625em;
    margin-top: 1.625em;
    padding-top: 5px
    padding-bottom: 5px
    background-color: #2d5c88;
    }

    #222571

    One option that may work for you would be to re-add the page header by removing this CSS:

    /*  Disable the sticky header on the HOME page */
    .home header#kad-banner {
        display: none;
    }

    Add this CSS to remove the menu:

    .home .kad-header-right {
        display: none;
    }

    This CSS to make the sticky header transparent;

    .home #kad-banner {
        background: transparent;
    }

    And then add a logo for your transparent header in Theme Options> Site Header “Logo (For Transparent Header).”

    Does that work for you?

    -Kevin

    #222464

    The header is actually displaying the same size on all pages. It just looks different when it’s above the white background. Try adding this CSS to Theme options> Advanced Settings, and let me know if it helps:

    header#kad-banner {
        border-bottom: 1px solid #e6dfdf;
    }
    .page-header {
        border: none;
    }

    -Kevin

    #222369

    Hi Bente,
    Would it work for you to add your featured image as the sitewide banner from Theme Options > Advanced Settings?

    Hannah

Viewing 20 results - 381 through 400 (of 1,614 total)