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 Theme
hi Hannah
I am really sorry to bothering you again. Since you provided the code for the gif text banner positioned right in the middle of header section in the home page, it appears it works on both tablets and wider screens, however, there is a problem with the mobile version, and it is not mobile responsive.
The said domain name is: https://www.exelcouriers.co.uk, where you can find the moving text: Sameday service, Pick up within 60 min. banner.
I have tried to make the gif banner small and put in the mobile menu section, but it isn’t working.
Could you please help me to have a look?
thank you so much!!
NickyIn forum: Virtue ThemeIn reply to: Virtue Home Image menu – Circular Images
In forum: Virtue ThemeIn reply to: social links
Dear Sir or Madam
My client is asking me to put some gif text in between the logo and main menu, in order to fill the big white space. I did use the Advanced Styling, Header background, Upload background image or texture, and made adjustment of x image placement, y image placement option to make the text fit in between the logo and the menu, however, it is centred, but it covers the menu text. Please see the screenshot here; *Login to see link
You may also have a look at the website: *Login to see link , home page, top banner the rolling text.
Could you please help me to make the adjustment for the rolling text to be fitted within the white space? Or is there a script that I can place within the advanced styling section?
I look forward to hearing from you.
Thanks
NickyIn forum: Ascend ThemeIn reply to: Rotating Leaderboard Ad Banners
Thank you Ben:
That would be to have banners in the header area on the Home Page via Home Page Header settings? Or is there another option you were thinking about?
I was looking for a solution that would appear on all pages. For instance, Home Extras Widget Area. I tried using a Text widget with the Kadence slider shortcode and it did not work.
Appreciate your help!
LorenIn forum: Ascend ThemeHi:
What are the solutions for having a series of rotating leaderboard ad banners (728×90) within the header area of the Ascend Theme? Right now we have one setup in the “Headers Extra Widget Area”. We’d like to have 4 or 5 banners rotating. Is there an option available within the Ascend Theme?
Thank you,
LorenIn forum: Virtue ThemeIn reply to: Thin border under header
In forum: Ascend ThemeTopic: Sucuri plugin
I added the Sucuri plug and it came up with the following recommendations. My host provider added all but two (Server Banners Displayed, Security Header:Strict-Transport Security) to the .htaccess file. I assume this doesn’t mess up anything with the Ascend theme using Gutenberg right? And host provider already has a strict access directly to https://. Input appreciated.
Directory Listing Enabled
Directory listing is enabled on your site. You can test it by visiting: $USER_site/wp-includes/css/ .
Server Banners Displayed
Your site is displaying your web server default banners.
Security Header: Strict-Transport-Security
We did not find the recommended security header Strict-Transport-Security on your site.
HTTP Trace Method Allowed
Your web server is allowing the TRACE method, which can be misused to attack your site.
Security Header: X-Content-Type-Options nosniff
We did not find the recommended security header to prevent Content Type sniffing on your site.
Security Header: X-XSS-Protection Missing
We did not find the recommended security header for XSS Protection on your site.In forum: Virtue ThemeIn reply to: Make Kadence Slider full width when page is not
In forum: Virtue ThemeIn reply to: Add space below secondary menu
In forum: Virtue ThemeIn reply to: Increase header width
In forum: Virtue ThemeIn reply to: Full-width mobile menu
In forum: Virtue ThemeOctober 16, 2018 at 5:40 pm #204479Hey,
Yeah virtue doesn’t have the same options. But you can use css, for example like this:@media (min-width: 992px){ .page-id-1663 #kad-banner { position: absolute; top: 0; width: 100%; z-index: 1000; } }Ben
In forum: Pinnacle ThemeIn reply to: Location map not showing on contact page
Hi Kevin,
I am not seeing anything but a grey box my end on that banner section? https://thelittlecarnivorecompany.co.uk/contact-us/
Kind regards,
CharlotteIn forum: Virtue ThemeOctober 2, 2018 at 12:42 pm #203192Here is the css you requested:
.tab-content>.tab-pane p { color: white; } .tab-content { background: #4f709d; color: white; border-color: gray; } .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { color: white; background: #4f709d; border-color: gray; border-bottom-color: transparent; }I added in the css and javascript for the sticky main section of the header already but I’m posting below so it’s saved here as well:
Java:
<script type="text/javascript"> jQuery(document).ready(function ($) { var topOffset = $('body').hasClass('admin-bar') ? 32 : 0; $('#kad-banner > .container ').sticky({topSpacing:topOffset}); }); </script>Css:
/* Sticky Heading */ #kad-banner > .container, #kad-banner > .sticky-wrapper > .container { width:100%; padding:0; } .sticky-wrapper.is-sticky > .container { width: 100%; z-index: 1000; background: white; } #kad-banner > .container > .row, #kad-banner > .sticky-wrapper > .container > .row { margin:0 auto; } @media (min-width: 768px) { #kad-banner > .container > .row, #kad-banner > .sticky-wrapper > .container > .row{ width: 750px; } } @media (min-width: 992px) { #kad-banner > .container > .row, #kad-banner > .sticky-wrapper > .container > .row { width: 970px; } } @media(min-width: 1200px) { #kad-banner > .container > .row, #kad-banner > .sticky-wrapper > .container > .row { width: 1170px; } }Ben
Hi, i love this option, but i don`t want to show the image on the homepage, because i use a slider there. Could you please help me with the necessary css code (????? display: none !important;}. Thanks in advance for your help. Best Regards, My
I SOLVED THE PROBLEM BY MY OWN:
.home .container .virtue_sitewide_banner {display:none !important;}In forum: Virtue ThemeIn reply to: Hide Site Header
In forum: Virtue ThemeIn reply to: Kadence Slider Pro for the Header!
September 17, 2018 at 6:22 pm #2017211. Update the css to this:
@media (min-width: 992px){ .kad-header-widget { width: 50%; } .kad-header-left { width: 25%; padding:0; } #kad-banner > .container { position:relative; } #kad-banner > .container > .row:nth-child(1) { width: 100%; margin: 0; float:none; } #kad-banner > .container > .row:nth-child(2) { width: 25%; float: right; margin: 0; position:absolute; top:0; right: 15px; } .kad-header-right { padding: 0; } .col-md-12>#nav-main ul.sf-menu { text-align: right; } #nav-main ul.sf-menu a { padding: 10px; } }2. Add this css:
.widget-first.header-widget-area-header { margin-top: 5px; margin-bottom: 5px; }In forum: Virtue ThemeIn reply to: Kadence Slider Pro for the Header!
Hi Ben,
Thanks so very much for the code.
You can see what now it looks like.It works pretty well but I would like to get the Kadence slider exactly to the middle of the header. That means, I would like it to look the same distance from the right and left edge of the header.
Also, I think it would be great if I could move the Kadence slider a few px up so it looks the same distance from the lower edge of the topbar menu banner and from the upper edge of the secondary menu banner.
I hope I could explain clearly. If not, please let me know.
Thanks,
JayIn forum: Virtue ThemeIn reply to: Kadence Slider Pro for the Header!
September 17, 2018 at 12:55 pm #201687You can add this css:
@media (min-width: 992px){ .kad-header-widget { width: 75%; } .kad-header-left { width: 25%; } #kad-banner > .container > .row:nth-child(1) { width: 75%; margin: 0; float:left; } #kad-banner > .container > .row:nth-child(2) { width: 25%; float: left; margin: 0; } .kad-header-right { padding: 0; } .col-md-12>#nav-main ul.sf-menu { text-align: right; } #nav-main ul.sf-menu a { padding: 10px; } }Ben
-
AuthorSearch Results


