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 '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 15,721 through 15,740 (of 53,646 total)
  • Author
    Search Results
  • #200944

    Hi Guys,

    i bought your virtu pro and now i set up new page with it.

    On my present site:

    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,
    Luke

    #200932

    Hey,

    How can I get rid of the Text and button that says “View details” when hovering on the portfolio page?

    I just want to keep the solid colour as the hover without the button.

    Thanks,

    Alex

    #200924

    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

    #200899

    I have just installed the Virtue theme and it has “Featured News” showing at the bottom of my homepage – but I don’t know where this is coming from!
    Where should I be looking?

    #200890

    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 Theme

    In reply to: Page scroll to id

    #200885

    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 Theme

    In reply to: Page scroll to id

    #200883

    It 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 Theme

    In reply to: Kadence slider

    #200880

    Hey,
    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 Theme

    In reply to: Page scroll to id

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

    In reply to: Kadence slider

    #200873

    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

    #200867

    Hi,
    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

    #200865

    Hey 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 Theme

    In reply to: Mobile Usability issue

    #200859

    Hey,
    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

    #200857

    Thanks 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 Theme

    In reply to: Mobile Usability issue

    #200856

    Hey 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 Theme

    In reply to: Page scroll to id

    #200854

    Hannah,

    I have tried it with it on and off and the same issue happens both ways.

    Any ideas. If not I will just get rid of the Page Scroll to ID plugin.

    thanks

    Jeremy

    In forum: Virtue Theme
    #200846

    Hello!
    I am struggling in inserting a kadence slider into the page. Ideally it should look like
    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

    Also, 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 Theme
    #200821

    Is this theme compatiable with beaver page builder?
    Installed on a new wordpress site and seems to be running really slow?

    #200813
    This reply has been marked as private.
    #200810

    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

Viewing 20 results - 15,721 through 15,740 (of 53,646 total)