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'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Content page sidebar customization
May 29, 2014 at 2:05 pm #9763You can’t just make the sidebar wider without editing the content div too. They are set by percentages so if you make the sidebar larger then it won’t fit and if will drop below the content.. So you can add this css to you custom css box but it will only work for the page you linked too. Each page you want this way you have to add the class with the right page id number:
@media (min-width: 1200px) { .page-id-233 .main {width: 66.66666666666666%;} .page-id-233 aside.col-lg-3 {width: 33.33333333333333%;} }as for the recent posts, use the virtue: recent posts widget.
Ben
In forum: Virtue ThemeHi Ben, i created a new sidebar for my content pages. Here is an example *Login to see link
I named “Content sidebar” Which class do i use to change the look and feel of this sidebar? I need to increase the width of the sidebar. If i increase it will the width of the main panel shrink automatically? Also, how do i make sure that the blog posts appear with a featured image thumbnail?In forum: Virtue ThemeIn reply to: Fancy Product Designer
May 27, 2014 at 11:57 am #9634Ok first, I would talk to the product developer, the fact that this plugin isn’t responsive amazes me. And since it’s not responsive no matter what css I give you it will not look good on all screens. So in general I can’t support a plugin that isn’t responsive with a responsive theme.
Now with that said this will help the style on desktop devices. try adding this to your custom css box:
.product-img-case { width: 100%; } .fpd-horizontal > .fpd-sidebar { margin: 0 10px 0 0 !important; width: 270px !important; } .fpd-horizontal > section { float: left !important; }Ben
In forum: Virtue ThemeIn reply to: Widgets in the sidebar when on mobile
May 26, 2014 at 9:56 am #9580You can hide the sidebar with this:
@media (max-width: 992px) { aside.col-lg-3 {display:none;} }Ben
In forum: Virtue ThemeIn reply to: Widgets in the sidebar when on mobile
In forum: Virtue ThemeIn reply to: Widgets in the sidebar when on mobile
May 25, 2014 at 8:39 am #9542There really isn’t a good way to have that much content per row and have it mobile friendly. Its pretty standard to have the sidebar drop below the content.
You can look around for ideas from other sites but I can’t think of a mobile friendly site with a sidebar?
Ben
In forum: Virtue ThemeIn reply to: Sidebar link color
May 25, 2014 at 8:35 am #9541Hey you can add this to your custom css box in the theme option > advanced settings:
.sidebar a { color: #245db4; }Ben
In forum: Virtue ThemeTopic: Sidebar link color
Hi,
I have added some links to the sidebar on *Login to see link
Can anyone spot why the links are grey instead of blue (they are blue in the main content area).
Thanks,
MadsIn forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Custom page template
May 22, 2014 at 6:51 pm #9439So you can create a custom page template called. page-custom-template.php
Add this code into it:
<?php /* Template Name: Custom Template */ ?> <div id="content" class="container"> <div class="row"> <div class="main col-md-12" role="main"> <!-- add your plugin code here --> </div><!-- /.main -->Then to make sure no sidebar shows you create a function:
<?php add_filter('kadence_display_sidebar', 'kad_sidebar_on_special_page_template'); function kad_sidebar_on_special_page_template($sidebar) { if (is_page_template('page-custom-template.php')) { return false; } return $sidebar; } ?>Now to make the footer disappear on that page, add this to your custom css box in the theme options:
.page-template-page-custom-template-php .footerclass { display:none; }Ben
In forum: Virtue ThemeTopic: Title homepage on the left
On all our pages the title goes to the right, above the site-bar which we show on the left (thanks to the CSS code you gave us). On all the pages the title is on the left exept for the homepage ( look at creatiefzijnravenstein.nl) What can i do to show the homepage title above the sidebar?
Thank you.In forum: Virtue ThemeTopic: Remove sidebar
In forum: Virtue ThemeIn reply to: Category Thumbs Missing in Virtue Premium
Hi Ben,
Just updated to the latest version. With regards to:
3. The sidebar, reason the correct sidebar isn’t showing with the products is because the metaboxes aren’t set for the products. So if you import the products or built them on a separate theme then they default to show the primary sidebar. I am fixing this in the next version, should work once I push the update out tomorrow or monday.
Has this been done in the update, and what do I have to do to switch it on?
Thank you.
Todd
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Call to action widget
In forum: Virtue ThemeIn reply to: Change Sidebar Headings to H4
May 18, 2014 at 8:59 am #9176Well if the only reason is to change some styling then I recommend just adding custom css, for example you can add this to your custom css box in the theme options > advanced settings:
.sidebar h3 { font-size: 20px; color:#444444; }Ben
In forum: Virtue ThemeIn reply to: Call to action widget
May 18, 2014 at 8:40 am #9168Hey, yeah I see it I should have tested with the sidebar. When I added I was thinking about pagebuilder, it works there, but my mistake. I’ll fix in the next version.
Ben
In forum: Virtue ThemeHow do I change my sidebar headings to H4? I like the H3 size, font, and color I chose as it appears elsewhere on the site, but I don’t like it for the sidebar. Please be detailed with instructions since my skills are only intermediate.
Also please feel free to comment if changing sidebar headings to H4 is a bad idea!
Thanks for your help!
In forum: Virtue ThemeIn reply to: Upgrading to Premium Theme
May 17, 2014 at 12:54 am #9108Hey Brian,
My best guess is there is a permissions error stopping the theme from unzipping once it uploads. This is a file issue on the server. But thats a guess. You can contact your hosting company if you don’t know how to check and see if they can give you insight.Other reasons would be that your php settings have a max upload smaller then the size of the theme file. Like 7mb. You can check that by clicking the add media link in the left sidebar of your wordpress admin and then in the bottom left corner it should tell you the max upload size. (if it is smaller then 7mb you can contact your host and ask them to increase your php max upload size or do it yourself by following an online tutorial: http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/
Either way a thing to try right now it transferring the theme to your site using an ftp client and your ftp access. It will take a little while to transfer the whole file because you will need to unzip and move it as files and folders and not as a zipped file.
Hope that helps,
If your getting no where send me an email with your wordpress login information or ftp information and I can see what I can do to get the theme uploaded.Ben
In forum: Virtue ThemeSo I edited the css on *Login to see link . It is beginning to look like how I want it to look. However, by doing this I messed up regular pages such as *Login to see link . For example, the sidebar appears below the content instead of to the right of it. My apologies, I could figure this out eventually, but I am low on time.
Thanks for the support!
-
AuthorSearch Results


