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 'sidebar'

Home / Forums / Search / Search Results for 'sidebar'

Viewing 20 results - 4,241 through 4,260 (of 5,356 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #45580
    This reply has been marked as private.
    #45564

    I think you mean something like this:

    @media (max-width: 1200px){
        #ktsidebar {display: none !important;}
        .main.col-lg-9 {width:100%}
    }

    Ben

    In forum: Virtue Theme
    #45556

    Cheung, Please post in your own topic and give specific about what you want.

    Eunice,
    First off you have this error: Font from origin ‘http://yourdigitalstop.com’ has been blocked from loading by Cross-Origin Resource Sharing policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://www.yourdigitalstop.com’ is therefore not allowed access.

    Your site is not redirecting to either have www or not have www and you need to make it so you only have one and then set that url in your admin general settings.

    As for css try this out:

    .woocommerce .product-categories li span {
        position: absolute;
        top: 3px;
        left: 0;
    }
    .woocommerce .product-categories li a {
        padding-left: 30px;
    }
    .woocommerce .product-categories li {
        position: relative;
    }
    .woocommerce .product-categories li:hover, .woocommerce .product-categories li:hover a, .woocommerce .product-categories li.current-cat, .woocommerce .product-categories li.current-cat a {
        color:#dd8500;
    }
    .sidebar ul.product-categories {
        margin-left: 0;
    }
    

    Ben

    #45533

    You don’t need css to disable the sidebar. Most page templates have an option to turn the sidebar off. Or you can use a fullwidth template.

    Hannah

    #45512

    Hi there,

    I was wondering if you have a list of all the content values for each virtue_icon as I am trying to customise my sidebar bulletpoints with the following css;

    .widget_recent_entries .widget-inner li a:before {
    font-family: virtue_icons;
    font-style: normal;
    speak: none;
    font-weight: 400;
    content: “e37d”;
    float: left;
    margin-left: -20px;
    webkit-font-smoothing: antialiased;
    }

    the content example here is not the icon I want (e37d) so it would be good if there was a list of all the virtue icons with their content values so I can edit bullet points with the icons.

    Many thanks,

    Darren

    #45504

    Hi again,
    one more question 🙂

    I disabled the sidebar:


    @media
    (max-width: 1024px){
    #ktsidebar {display: none !important;}
    }

    Is there a way to disable the sidebar on mobile devices and use full-lenght mode in the landscape mode on tablet (iPad etc.)
    Thanks in advance!

    David

    In forum: Virtue Theme
    #45502

    WOW, I also want to add hover effect on sidebar.
    Can also help me to add that by css ?

    My website : dakxcc.com.

    In forum: Virtue Theme
    #45501
    This reply has been marked as private.
    #45368

    Hi Ben/Hanna,

    How do add an active hover font on my product category on sidebar?
    Thanks.

    In forum: Virtue Theme

    In reply to: sidebar

    #45264

    The woocommerce widgets are not for the main content of the page. They are for a sidebar. If you want on the main content of the page you need to use the woocommerce shortcodes: http://docs.woothemes.com/document/woocommerce-shortcodes/

    Ben

    In forum: Virtue Theme

    In reply to: Responsive Logo size

    #45256

    3. On your home page. Make sure you have not enabled a sidebar.

    4. You can change the menu word in your theme options > language settings.

    Ben

    In forum: Virtue Theme

    Topic: sidebar

    #45134

    Hi, I get the css to make sidebar to left as below


    @media
    (min-width: 992px) {
    body .main.col-lg-9 {float:right;}
    }

    However, is it possible to make the photo to left and the price to right ?
    And also i want double the size of photo.

    my site: dakxcc.com

    In forum: Virtue Theme
    #44951

    I am having issues with the Revolution slider. I can see the slider as active on my plugin page … however when I go to the Home Slider page and select the Revolution slider in theme options it say’s “no items of this type were found”

    I looked at your tut on sliders and followed the 4 steps
    Step one: Make sure you have the latest copy of Virtue Premium by downloading the file from the my-account page on Kadence Themes.

    Step Two: Unzip the theme file and note the location on your hard drive.

    Step Three: In your wordpress admin click on the revolution slider sidebar tab and in the bottom right corner click the update plugin button.

    Step Four: Navigate to the location where you unzipped the theme file then open the theme folder, open lib, open plugins and then select the revslider.zip

    The plugin will then be updated.

    However I get this message

    importing slider setings and data…
    Error: slider_export.txt does not exist!
    Go Back

    Also in Step 3 … I can’t see anything in the bottom right corner that indicates that there is anything to select to update the plugin

    I am not someone who works with code … I am a Herbalist, so please respond with the easy version of what to do 🙂

    Thanks

    In forum: Virtue Theme
    #44863

    1. In your post edit page set the post summary to video.

    2. You can choose your homepage sidebar in Theme Options > Home Layout and you can customize in Appearance > Widgets.

    Hope that helps!
    Hannah

    In forum: Virtue Theme
    #44854

    Also I cannot find anything on how to customize my homepage sidebar

    In forum: Virtue Theme

    Topic: Adsense code

    #44786

    Hello,

    I am using text widgets to get adsense ads to appear in the sidebar and on pages, but I’m also looking to insert ads to appear on single post pages, above the featured image. Am I right in thinking that this needs to be inserted into ‘content-single.php’, and if so, where should I enter the code?

    Thanks.

    #44649

    Hey David,
    You just need to set the page template to fullwidth. Or in the edit page you should see an option to turn off the sidebar.
    Hope that helps!

    Hannah

    #44645

    Hi,
    is there a way to disable the sidebar on separated pages?
    Thank you in advance.

    David

    #44584

    You would need to use a custom function. The events calendar uses it’s own templates so you just need to turn the sidebar off for theme.

    In a child theme you would add a function like this:

    add_filter('kadence_display_sidebar', 'tribe_sidebar');
    
    function tribe_sidebar($sidebar) {
      if (tribe_is_event_query()) {
        return false;
      }
      return $sidebar;
    }

    Ben

    #44579

    Ben,

    I have The Events Calendar Pro 3.9.3 installed and it does not matter what I set the template to for the page or in the backend settings for the calendar, it always displays the primary sidebar. I don’t want a sidebar on this page. How can I get rid of the the side bar?

    Thanks

    Jeremy

Viewing 20 results - 4,241 through 4,260 (of 5,356 total)