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 - 1,261 through 1,280 (of 1,614 total)
  • Author
    Search Results
  • #62143

    On an Ipad on landscape it should still have logo on the left and your widget area on the right. The only change should be the menu. For touch it should be a touch menu but that should be the only difference.

    I see you have this back in on your site?

    @media (min-width: 992px) {.boxed header.banner.headerclass {
    position: absolute; top: 1; left: 0; width: 100%; margin: 0;
    }
    .boxed .contentclass {
    padding-top: 179px;
    }
    }

    If you want to leave it thats fine, just add this then:

    @media only screen and (device-width: 768px) {
    .boxed header.banner.headerclass {
        position: static;
        top: auto;
        left: auto;
        width: auto;
        margin: 0 -15px;
    }
    .boxed .contentclass {
    padding-top: 0px;
    }
    }

    Make sure it’s added after your other css.

    If your seeing something off more then just the slider riding up on the menu please post a screen shot. I’m only seeing that your header is not working correctly with the menu because of the css your adding.

    Ben

    #62126

    Looks like you are adding this, which would effect the ipad negatively on landscape since the ipad is more then 992px wide:


    @media
    (min-width: 992px) {.boxed header.banner.headerclass {
    position: absolute; top: 1; left: 0; width: 100%; margin: 0;
    }
    .boxed .contentclass {
    padding-top: 179px;
    }
    }

    So change that to this:

    @media (min-width: 992px) not (device-width: 768px) {.boxed header.banner.headerclass {
        position: absolute; top: 1; left: 0; width: 100%; margin: 0;
    }
    .boxed .contentclass {
    padding-top: 179px;
    }
    }
    

    Ben

    #61862
    @media (max-width: 992px){
        .trans-header #kad-banner-sticky-wrapper {
        height: auto !important;
    }
    
    .stickyheader.trans-header #kad-banner {
        position: relative;
        background: #000;
    }
    
    .mobile-nav-container {
        padding: 0 !important;
    }
    }
    #61825

    Ok, to make this (maybe) simple. What if I placed the same banner on every page (I guess through the child theme) and then placed a different banner on the main page? Does that make it easier?

    #61664

    You don’t need to set the header as fixed. IN fact you shouldn’t…

    Change this:

    #kad-banner{
    position:fixed;
    z-index:1030;
    width:100%;
    border-left:15px solid #000;
    border-right:15px solid #000;
    left:0;
    top: 0;
    }

    To this:

    #kad-banner{
    z-index:1030;
    width:100%;
    left:0;
    top: 0;
    }

    Ben

    #61629

    Hi, I am using shrink for sticky for my header and I have made the header (#kad-banner) fixed also.
    Everything works all right, but when I open a page, the content scrolls down from the top of the body to the default position.
    I have made my header transparent, so you can see it.
    Can this be prevented? I will send you the link and my wd info in the next post, thanks a lot.

    #61506

    ok, you can have the menu header on the top of your page with the theme options?

    .home #kad-banner  {
    display:none;
    }

    Ben

    #61390

    Hey,
    You should not add code through the wordpress editor, you can easily mess up one line of code and the whole site would crash. Much better to use ftp and control your changes.

    If you want to add a banner then you would need to use a function through a child theme. You can get a child theme here: https://www.kadencewp.com/child-themes/

    Then you would need to add something like this to the functions.php file:

    add_action('after_page_header', 'kt_addcustom_banner_posts');
    
    function kt_addcustom_banner_posts() {
    	if(is_single()) {
    		echo 'custom banner here';
    	}
    }

    Ben

    #61307

    Hi,

    In my Revolution slider setttings I have a banner saying “version 5.0.6. available. WordPress 4.3 fix. Update now!” The link takes me to a product activation page, where I should provide a personal license certificate code. Since the plugin has come with the theme, I don’t have any purchase details for this plugin. In the WordPress appearance -> plugins list it doesn’t show an update for revolution slider.

    Looking forward to information on how I could update the plugin.

    #61217

    I would add an advertising banner on all posts of my site … I want to know or I have to insert the code in the editor menu

    #60981

    Hey,
    Banner, menu, and boxes in the footer – those are page content stuff. Thats all added outside of the page content? What are you missing thats in the page content?

    Ben

    #60976

    I original created the site, not using page builder. Client wanted to see what she could change and here we are.

    I see everything online – and used to see everything when I was editing.

    Banner, menu, and boxes in the footer. She wants me to put a signup box on that page and with a blank page, I have no clue how to that.

    #60574

    ok, I’ve added some css in your child theme. Tell me if that is what you were going for.

    I don’t know what you mean about the submenu?

    Here is the css for record.

    .kad-header-right {
        width: 90%;
        height: 50px;
        margin-top: 22px;
        padding: 0;
    }
    
    #kad-banner .kad-header-left {
        width: 10%;
        margin: 0;
        height: 50px;
        padding: 0;
        margin-top: 22px;
    }
    
    .logocase .kad-standard-logo {
        top: -30px;
        left: -30px;
        max-width: 180px;
    }
    
    #nav-main .ubermenu-main {
        max-width: 100%;
        width: 100%;
    }

    Ben

    In forum: Virtue Theme
    #60504

    ok you need a child theme: https://www.kadencewp.com/child-themes/

    Then you would need to add this function to the functions.php file:

    add_action( 'get_header', 'kt_post_slider_top', 1 );
    function kt_post_slider_top() {
      if ( is_single() ){
      global $virtue_premium;
      if(isset($virtue_premium['above_header_slider']) && $virtue_premium['above_header_slider'] == 1) {
        if(isset($virtue_premium['choose_slider']) && ($virtue_premium['choose_slider'] == 'ktslider' || $virtue_premium['choose_slider'] == 'cyclone' || $virtue_premium['choose_slider'] == 'rev')) {
        if($virtue_premium['choose_slider'] == 'rev') {
          echo '<div class="kad_fullslider">';
          putRevSlider( $virtue_premium['rev_slider'] );
        }
        else if($virtue_premium['choose_slider'] == 'ktslider') {
          echo '<div class="kad_fullslider">';
          echo do_shortcode('[kadence_slider id='.$virtue_premium['kt_slider'].']');
        } 
        else if($virtue_premium['choose_slider'] == 'cyclone') {
          echo '<div class="kad_fullslider">';
          echo do_shortcode( $virtue_premium['home_cyclone_slider'] );
        }
          if(isset($virtue_premium['above_header_slider_arrow']) && $virtue_premium['above_header_slider_arrow'] == 1) {
            echo '<div class="kad_fullslider_arrow"><a href="#kad-banner"><i class="icon-arrow-down"></i></a></div>';
          }
          echo '</div>';
          if(isset($virtue_premium['header_style']) && $virtue_premium['header_style'] == 'shrink') {
            $head_height = $virtue_premium['header_height']/2;
            echo '<style type="text/css" media="screen">@media (min-width: 992px) {.kad-header-style-three #kad-shrinkheader, .kad-header-style-three #logo a.brand, .kad-header-style-three #logo #thelogo, .kad-header-style-three #nav-main ul.sf-menu > li > a {height:'.$head_height.'px !important;line-height: '.$head_height.'px !important;}.kad-header-style-three #thelogo img {max-height: '.$head_height.'px !important;}}</style>';
          }
        }
      }
    }
    }
    

    Ben

    #60461

    Hey,
    Remove the widget your adding and add this css into your theme options > custom css box:

    .topclass {
        background: #b50a37 url('http://www.dronfieldhallbarn.org/wp-content/uploads/2015/09/Booking-Banner3.png') center center no-repeat;
        background-size: contain;
        height: 100px;
    }

    I don’t think this is really a great image for a topbanner since it’s mostly empty space on either side of the ribbon but you can tell me if that is what your thinking.

    Ben

    #60393

    Hello,

    Is there a way I can add an image to each page/top of the page that displays on each page without taking the whole thing over?
    I tried adding a banner image – but it was too big and it has the header background which made it look too busy
    I tried adding an image to the topbar widget which looks ok BUT it is super tiny and really need it to go 100% of the width – or to be able to adjust it so it looks alright…

    Is there anything else I am not thinking of?
    Or is there a way I can edit the topbar widget css to display wider?

    Here is the site: http://www.dronfieldhallbarn.org

    Many thanks
    Nic

    In forum: Virtue Theme

    In reply to: Image menu font color

    #60332

    Hi Hannah

    Never mind.

    The color changes when I put
    .infobanner h5 {
    color: #000000:
    }

    Thank you 🙂

    -Sidse

    #59854

    Thanks so much for the quick reply!

    The second item cleared up the white banner/text description on the portfolio grid just fine.
    The problem is that the initial code doesn’t affect the portfolio grid’s opacity at all. Right now I have it set on .2, just to see the clear difference between the hover and not, and there isn’t any.

    .portfolio .grid_item img {
        opacity: .2;
    }
     .portfolio .grid_item:hover img {
    opacity: 1;
    }
    

    (site is http://portfolio.laurahardwick.com)

    Thanks!

    In forum: Virtue Theme

    In reply to: Questions with website

    #59698
    @media (max-width: 991px) {
    .stickyheader #kad-banner #logo a img, #kad-banner #logo a img {
        float: left;
    }
    }

    Looks like your missing hannahs code from above.
    Ben

    #59596

    I am having the same issue with the banner not showing up, however I do not have a sticky header. Any suggestions?

    Here’s the site: http://silverkeysolution.com/

    **Nevermind– it’s suddenly working. Perhaps it was just taking a while to save…

Viewing 20 results - 1,261 through 1,280 (of 1,614 total)