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'
-
AuthorSearch Results
-
In forum: Virtue ThemeOctober 10, 2015 at 12:43 am #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
In forum: Virtue ThemeOctober 9, 2015 at 4:27 pm #62126Looks 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
In forum: Pinnacle ThemeIn reply to: mobile menu > place behind header > off
October 7, 2015 at 4:20 pm #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; } }In forum: Pinnacle ThemeIn reply to: Kadence Slider on Individual Product Pages
In forum: Virtue ThemeIn reply to: Content scroll down with fixed header
October 6, 2015 at 1:50 pm #61664You 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
In forum: Virtue ThemeHi, 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.In forum: Virtue ThemeIn reply to: How can i increase my logo menu?
October 5, 2015 at 4:26 pm #61506ok, you can have the menu header on the top of your page with the theme options?
.home #kad-banner { display:none; }Ben
In forum: Pinnacle ThemeIn reply to: insert advertising banner on all posts
October 5, 2015 at 11:59 am #61390Hey,
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
In forum: Pinnacle ThemeIn reply to: Update of Revolution Slider?
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.
In forum: Pinnacle ThemeIn forum: Virtue ThemeIn reply to: Home page content not showing in edit mode
October 1, 2015 at 4:22 pm #60981Hey,
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
In forum: Virtue ThemeIn reply to: Home page content not showing in edit mode
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.
In forum: Virtue ThemeIn reply to: ubermenu Full Width on Virtue Premium
September 28, 2015 at 6:23 pm #60574ok, 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 ThemeIn reply to: home page translation issue
September 28, 2015 at 12:35 pm #60504ok 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
In forum: Virtue ThemeIn reply to: Banner image – top or on each page
September 28, 2015 at 10:36 am #60461Hey,
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
In forum: Virtue ThemeSeptember 28, 2015 at 2:39 am #60393Hello,
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
NicIn forum: Virtue ThemeIn reply to: Image menu font color
In forum: Virtue ThemeIn reply to: Portfolio Hover/Text Opacity
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 ThemeIn reply to: Questions with website
September 22, 2015 at 8:04 pm #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.
BenIn forum: Virtue ThemeIn reply to: Sitewide Banner not displaying ?
September 22, 2015 at 9:36 am #59596I 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…
-
AuthorSearch Results


