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
Hi Guys,
i bought your virtu pro and now i set up new page with it.
On my present site:
*Login to see link
i am using virtue free yet and there is Carousel Item Portfolio. Please see the page.How to do it the same feature on virtue pro?
I can set up main page from virtue premium but when i am building site using site origin – there is a problem and i have not this feature.Please help,
Best,
LukeIn forum: Pinnacle ThemeIn forum: Virtue ThemeIn reply to: Changing look in mobile devices
I think this css will fix your image menu items on mobile:
@media (max-width: 768px) { .image_menu_item_link .image_menu_message h5 { opacity: 1 !important; } }Ah sorry, that’s my fault. You can certainly add a row id and that will make finding the class simple! This css should work for hiding your call to actions on mobile:
@media (max-width: 768px) { .panel-row-style-for-11-0 .kt-ctaw { display: none; } }Then make sure you set the margins in those rows to 0 for mobile (from the page builder editor).
As for the image menu overlay, you can add a widget id, then use that id to affect certain menu items. So let’s say you use the id “mecanica”. You can then use this css to affect the overlay:
#mecanica .image_menu_overlay { background: #03aad3; }Hope that’s helpful! And I apologize again for the poor css previously.
Hannah
In forum: Virtue ThemeTopic: Remove “Featured News”
In forum: Virtue ThemeIn reply to: Changing look in mobile devices
1. Try adding this to your custom css box in Theme Options > Advanced Settings:
@media (max-width: 768px) { .panel-widget-style.panel-widget-style-for-w5b85627cdf342-1-1-0, div#pgc-w5b85627cdf342-0-0 { display: none; } #pl-w5b85627cdf2e9 .panel-grid-cell { margin: 0; } }2&3. When editing a row in page builder, under the Layout tab you should see “Collapse Behavior” and “Collapse Order” dropdowns. That will adjust how your columns collapse in mobile.
4. You can change the color with this css:
@media (max-width: 768px) { div#pgc-11-1-0 p, div#pgc-11-1-0 h2, div#pgc-11-1-0 h5 { color: red !important; } }Hope that’s helpful!
Hannah
In forum: Pinnacle ThemeIn reply to: Page scroll to id
Ben,
The dev does not say it specifically related to your theme.
But here is the post I was talking about
http://manos.malihu.gr/page-scroll-to-id-for-wordpress/2/
Search the page for Internet Explorer.
It is vague. If you have any ideas great. If not no worries.
thanks
Jeremy
In forum: Pinnacle ThemeIn reply to: Page scroll to id
September 7, 2018 at 4:40 pm #200883It works great in every browser except IE 11 and Microsoft edge
Typical.
From what I read in the support forum for
Page scroll to id it sounds like this might be a conflict with the theme.can you link to that so I can see the topic? Knowing what kind of conflict would help me determine what it could be.
In forum: Virtue ThemeIn reply to: Kadence slider
September 7, 2018 at 4:33 pm #200880Hey,
For the logo you can add this css:.headerclass > .container { padding: 0; }For the slider on that page you would need to add this css:
.boxed .entry-content .elementor-inner .ksp-slider-wrapper.kad-slider-parallax { margin-left: -25px !important; margin-right: -25px !important; }Ben
In forum: Pinnacle ThemeIn reply to: Page scroll to id
In forum: Virtue ThemeIn reply to: Kadence slider
Thanks so much Ben!It works for that particular page, but does not work if I use Elementor https://helianthus.uk Is anything I should change?
Can I regulate the hight of the box?I also wonder if the logo can be in one line with the left border? I do not really now why it looks like this……
Thank you so much
In forum: Virtue ThemeSeptember 7, 2018 at 1:28 pm #200867Hi,
Is there a way to slow down the speed at which the text box on the Split Content Widget comes into the page – or otherwise make the movement more apparent? It’s working fine, but the person I’m doing a site for would like the motion to be more apparent, less subtle. I’m not sure how to do this other than to slow it down.I know we could make a slider, but the other aspects of Split Content work perfectly to display the text and image content.
Thanks for any insight,
Jackie
In forum: Ascend ThemeHey guys, im working on http://www.nublefest.cl, and the first 3 menu elements are always active because their links are anchors in the front page. Due to this, they got no hover effect, how to change that? I want hover effect on those even though they are active on front page!!
gracias!In forum: Ascend ThemeIn reply to: Mobile Usability issue
September 7, 2018 at 12:05 pm #200859Hey,
That is not the correct place. You need to edit your home page. Go to the row and edit your row settings, there you have set the max width to 60px and you need to remove that. You do not want anything to max at 60px.If you would like you can send a login and I can remove hte css you’ve added to the row in your home page.
Ben
In forum: Membership ForumsSeptember 7, 2018 at 11:29 am #200857Thanks Ben!
I can’t figure out the image size issue. Tried all sorts of combinations of theme settings, but in the end they seem to be ignored.
Please note that I use shortcodes like this to show the sub-categories
[product_categories columns=”3″ hide_empty=”0″ number=”0″ parent=”164″]
The same issue occurs on archive pages that show products. Here I use the Widget “Woo Archive: Main Loop” in the corresponding Woo Template.Any idea how to get square boxes with white background and have the product/category picture fit inside?
If you want credentials for the development site to take a look, just let me know…The other topics are sorted out:
The count is now hidden, using your CSS example.
And I decided to write a shortcode that returns the current category and the base category (which has no parent-category).
The code is added below for those who are interested. Just add that to your theme’s functions.php.
If you add the shortcode [archive_header type=”current”] on an archive page (or template), you’ll get the current category.
[archive_header type=”base”] gives you the base category.function archive_header_function($atts) { $atts = shortcode_atts( array( 'type' => 'current', ), $atts, 'archive_header' ); $type = $atts['type']; global $post; ob_start(); $currentCat = get_queried_object(); $parentcats = get_ancestors($currentCat->term_id, 'product_cat'); if ( $parentcats ) { foreach($parentcats as $parent) { $cat = get_term_by( 'id', $parent, 'product_cat' ); if ( $cat->parent == 0 ) { $baseCat = $cat; } } } if($type == "current") { echo $currentCat->name; } if($type == "base" AND isset($baseCat)) { echo $baseCat->name; } return ob_get_clean(); } add_shortcode('archive_header','archive_header_function');In forum: Ascend ThemeIn reply to: Mobile Usability issue
September 7, 2018 at 11:22 am #200856Hey Ben, dont laugh, is this where I need to change it to 60px?
if so – even if I change it to 60, as soon as I save settings, it changes to 320.Mobile Width (layout)
320
px
Device width, in pixels, to collapse into a mobile view .https://www.adventuretravelcoach.com/wp-admin/options-general.php?page=siteorigin_panels
In forum: Pinnacle ThemeIn reply to: Page scroll to id
In forum: Virtue ThemeTopic: Kadence slider
Hello!
I am struggling in inserting a kadence slider into the page. Ideally it should look like *Login to see link
So the page must slide freely upon the background. First I tried to do it without using kadence slider, It resulted in using elementor and it did not work well.
Now I am trying to do it using Kadence now, but I am not able to get rid of the borders, please see it here *Login to see linkAlso, could you please advise on how I can make a top bar menu wider, there are quite a few items and i would like to display them all.
Thank you !!!! You help is greatly appreciated! Im really struggling….In forum: Ascend ThemeTopic: Beaver Builder
In forum: Virtue ThemeIn reply to: Embedding a web page / Website using iFrame
In forum: Pinnacle ThemeTopic: Page scroll to id
Ben,
I am using the
Page scroll to id plugin to have a smooth scroll effect from the home page to anchors in another page.If you click on the Read More anchor under the Foundation Icon on the home page you will see the effect.
It works great in every browser except IE 11 and Microsoft edge, it flashes down to the anchor and then back to the top of the page and then scrolls back down.
From what I read in the support forum for
Page scroll to id it sounds like this might be a conflict with the theme.any Ideas?
thanks
Jeremy
-
AuthorSearch Results


