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 'page '
-
AuthorSearch Results
-
In forum: Virtue Theme
I have several pages that relate to different industries we sell our product into. I have been tasked with putting an image carousel at the bottom of each page, but these contain images specific to the page it’s on. For example:
Media and Entertainment page: a carousel of M&E client logos
Military and Government page: a carousel of M&G client logosI have discovered one way of doing it. For example, the M&E carousel:
1. Create a new portfolio item for EACH client. So if I want to display 8 client logos, I add 8 portfolio items
2. Set featured image for each of those portfolio items
3. Assign each portfolio item to a particular category (“Media_Entertainment” or whatever)
4. On the page, use the carousel shortcode with type=portfolio and cat=Media_EntertainmentThis works.
But it’s kinda tedious when the “high level” version of what I want to do is: “Make a new carousel with this list of 8 images”
Any advice?
In forum: Virtue ThemeIn reply to: How to add a Border to all images
Superb – you are a star!
I had been somewhere near that code much earlier in the day but without the px.
My final question is
How do you create CSS for a vertical or horizontal line – something to break up sections on a page – perhaps to separate a widget?
I am then pretty much done.
Your help has been invaluable and very much appreciated – certainly made the correct template choice!
In forum: Virtue ThemeIn reply to: How to add a Border to all images
October 9, 2014 at 1:06 pm #19464Just need to have more specific css as your are overriding woocommerce styles:
.woocommerce ul.product_list_widget li, .woocommerce-page ul.product_list_widget li { padding: 10px; }Ben
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Remove Page Title (Still having problems)
October 9, 2014 at 11:55 am #19453ok I don’t see any page title? Are you wanting to remove the site-name/logo?
BenIn forum: Pinnacle ThemeIn reply to: Topbar content
October 9, 2014 at 11:22 am #194431. I assume your using a social widget and not the icon menu you can set up in the theme options?
Post a link and I can help align.2. I would much rather you post a link per forum instructions then attach a screen shot. For example in this situation a screen shot of your issue doesn’t help me I need to see the source code in the page.
Ben
In forum: Pinnacle ThemeIn reply to: Info box link
I need to have a link like the “more” link in this page under web design:
In forum: Virtue ThemeIn reply to: How to add a Border to all images
October 9, 2014 at 11:08 am #19435If you want to add padding you must define the unit of measurement. so padding:10; should be = padding: 10px;
If you want to add more around the whole page add this css:
@media (min-width: 1200px){ #wrapper.container { width: 1000px; } } @media (min-width: 992px) { #wrapper.container { width: 1000px; } } @media (min-width: 768px) { #wrapper.container { width: 780px; } }Ben
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: link to certain Tab
October 9, 2014 at 10:57 am #19431The tabs are not set up with way. But can be if you hack into the system, you have to have the latest version of the theme for this to work.
Step on is to add this script in a text widget in one of the footer widget areas:
<script type="text/javascript"> jQuery(document).ready(function ($) { var url = document.location.toString(); if (url.match('#')) {$('.nav-tabs a[href=#'+url.split('#')[1]+']').tab('show') ;} }); </script>Set to open the page that has your tabs and change the
[tabs]shortcode to[tabs id="1"]Now if you link to the page and want the second tab to open the url would be:
http://myurl.com/mypage/#sctab11
and if you wanted the third tab to open it would be:
http://myurl.com/mypage/#sctab12
and the fourth would be:
http://myurl.com/mypage/#sctab13
Ben
In forum: Virtue ThemeIn reply to: Increase Sidebar Width
October 9, 2014 at 10:50 am #19428switch the css with :
@media (min-width: 1200px) { #content .main.col-lg-9 {width: 66.66666666666666%;} #content aside.col-lg-3 {width: 33.33333333333333%;} }that will make sure to only target pages with a sidebar.
Ben
In forum: Virtue ThemeIn reply to: Fullwidth header and boxed page
October 9, 2014 at 10:48 am #194271. You can add this css to your custom css box but it won’t work exactly like the link because the page header and the content are in different div containers.. so virtue can’t do exactly like the site you linked to.
#content { padding-top: 15px; border-left: solid 1px #f0f0f0; border-right: solid 1px #f0f0f0; -moz-box-shadow: 0 5px 8px 0 rgba(167, 167, 166, 0.3); -webkit-box-shadow: 0 5px 8px 0 rgba(167, 167, 166, 0.3); box-shadow: 0 5px 8px 0 rgba(167, 167, 166, 0.3); } #pageheader > .container { border-left: solid 1px #f0f0f0; border-right: solid 1px #f0f0f0; -moz-box-shadow: 0 -4px 8px 0 rgba(167, 167, 166, 0.3); -webkit-box-shadow: 0 -4px 8px 0 rgba(167, 167, 166, 0.3); box-shadow: 0 -4px 8px 0 rgba(167, 167, 166, 0.3); }2. I am assumgin your are talking about the breadcrumbs?
You can add this css:
#kadbreadcrumbs { font-size: 10px; text-align: left; float: left; } #kadbreadcrumbs a, #kadbreadcrumbs { color: blue; }Ben
In forum: Virtue ThemeI’ve posted here before on the same topic but I can’t find the thread.
I’m trying to configure the Revolution Slider to fill the browser window and not just the page through Page Builder. I’ve adjusted the slider to “full screen” and “auto response”. Still no success. I’m not very skilled with code so if you suggest that, can you provide instructions on how to enter it?
Thank you!
In forum: Virtue ThemeIn reply to: How to add a Border to all images
In forum: Virtue ThemeTopic: link to certain Tab
hello,
I currently have a problem where I no longer get stuck myselves.
So, i have created 7 tabs and the first is opened on the page. All fine
Now I would like open a link on the page and thereby open a different tab. I tried it with “*Login to see link but unfortunately it does not work.Thanks in advance
In forum: Virtue ThemeIn reply to: Increase Sidebar Width
I wanted to do the opposite and reduce my sidebar.
I have used this code and adjusted the percentages – All works and looks as I wanted.
BUT the main/home page has now followed the same format – I have a blank space where a sidebar would normally be.
I have the full page width selected in the Home Layout.
How do I exclude the Home page from the above code?
In forum: Virtue ThemeIn reply to: Fullwidth header and boxed page
Hey,
1. What you can do is go to theme options > misc settings and turn on the “Limit Max Page to 940px.” I think that will give you the look you’re going for.2. You just want the primary menu pulled left? You can add this to your custom css box in theme options > advanced settings:
#nav-main ul.sf-menu { float: left; margin-left: -120px; }Hannah
In forum: Virtue ThemeHello experts,
I’m creating a page similar with *Login to see link
This is my page: *Login to see linkSome problems I have with Virtue theme:
1. Is it possible to have Fullwidth header with boxed page as this link *Login to see link with Virtue theme?
2. Is it possible to move the “Home » ….>>…” on the left of the page? (This is on my page) And can we change the color with it?Thank you in advance!
In forum: Virtue ThemeIn reply to: Problems with my portfolio
Hi Ben,
I get this page if I click on one of my images:
https://www.dropbox.com/s/wpspjb72piyakul/Schermata%202014-10-09%20alle%2008.47.54.png?dl=0🙁
In forum: Virtue ThemeTopic: Icon Menu Link
Here’s the website: *Login to see link
Is there any way to link the Icon Menu Items to another page on the site or even an external site? Using them like buttons?
Thanks.
-
AuthorSearch Results


