Forum Replies Created

Viewing 30 posts - 60,991 through 61,020 (of 67,145 total)
  • Author
    Posts
  • in reply to: Displaying #219364

    Hey!

    Did you try the instruction above? Insert the link using a Text Block.

    Best regards,
    Ismael

    in reply to: changing font color in widget area #219359

    Hi!

    Please use this for the title color:

    .main_color div .news-headline {
    color: blue;
    }

    Cheers!
    Ismael

    in reply to: Using quote in post breaks the blog #219357

    Hi!

    What do you mean “it works”? Please give us a link to the blog page.

    Regards,
    Ismael

    in reply to: Sidebar menu for subpages #219355

    Hi vadi4ek!

    Please use the Tabs element on Advance Layout Builder then enable the “Tab Icon”.

    Best regards,
    Ismael

    in reply to: Nested menu in sidebar and Child/child #219354

    Hi!

    If I understand you correctly, you can replace the code with this on Quick CSS to hide the subpages on desktop view:

    @media only screen and (min-width: 768px) {
    .sub-menu{
    display: none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    .sub-menu{
    display: block;
    }
    }

    Regards,
    Ismael

    in reply to: Enfold Theme Kompatibilität Firefox #219351

    Hey!


    @dalcnetsrl
    : Please give us a link to the website.

    Best regards,
    Ismael

    in reply to: Don't show Author Page #219348

    Hi!

    Please try to add something like this:

    Disallow: /author*/
    

    Cheers!
    Ismael

    in reply to: menu hover color; heading font size; remove borders #219342

    Hi!

    Add this on Quick CSS:

    #header_meta {
    box-shadow: none;
    }
    
    .header_color .main_menu ul:first-child > li > a, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a {
    color: white;
    }

    Regards,
    Ismael

    in reply to: Problem with small fixed header with bar of big header #219340

    Hey!

    Please add this on Quick CSS or custom.css:

    .social_header .main_menu ul:first-child > li a {
    height: 100px;
    line-height: 100px;
    }

    Cheers!
    Ismael

    Hi!

    I can’t login to the website. It’s not loading properly on my end. Please try this one:

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 80px !important;
    line-height: 80px !important;
    }
    
    #header_main .sub_menu {
    left: 50px;
    position: relative;
    top: 36px;
    }

    Best regards,
    Ismael

    in reply to: Displaying #219330

    Hi Benjaminlivingthebrand!

    Please post a screenshot of what you’re trying to. You can insert the Blog Posts element then hide the excerpt and post meta info via CSS.

    .template-blog .entry-content {
    display: none;
    }
    
    .post-meta-infos {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: menu submenu position #219317

    Hey!

    Please add this on Quick CSS to move the avia-menu-fx when there is a mega menu:

    .menu-item-mega-parent .avia-menu-fx {
    bottom: 0;
    }

    Cheers!
    Ismael

    in reply to: about IE11 and before. #219316

    Hey iceadmin!

    Can you please give us a link to the website? Please edit header.php then find this code on line 38:

    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

    Add this code below:

    <?php if (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0; rv:11.0') !== false) { ?>
    	<script>
    	$(function(){
    		$('html').addClass('ie11');
    	});
    	</script>
    <?php } ?>

    Please update us after.

    Best regards,
    Ismael

    in reply to: Using php in in Avia builder #219310

    Hey Benjaminlivingthebrand!

    Please try this plugin: http://wordpress.org/plugins/insert-php/

    Best regards,
    Ismael

    in reply to: Masonry shop #218603

    Hey aabele!

    Don’t set the page as Shop Base Page on Woocommerce > Settings > Pages > Shop Base Page. Please note: The Masonry Shop is not suited for a shop with hundreds of products (in that case use the default shop) but if you only sell a handful of item and want to display them in a stylish way this might be the way to do it. The Masonry Shop has also some limitations that the “default shop” doesn’t have. It can’t be selected as default shop or shop archive. It is meant to be an extra element on your Frontpage not to display a full fledged shop. Thats what the default shop is for ;)

    Cheers!
    Ismael

    in reply to: Product Archive Template #218600

    Hey!

    You can edit config-woocommerce > config.php file, find the product image code on line 111:

    function avia_woocommerce_thumbnail($asdf)
    {
    	global $product, $avia_config;
    	$rating = $product->get_rating_html(); //get rating
    
    	$id = get_the_ID();
    	$size = 'shop_catalog';
    
    	echo "<div class='thumbnail_container'>";
    		echo avia_woocommerce_gallery_first_thumbnail( $id , $size);
    		echo get_the_post_thumbnail( $id , $size );
    		if(!empty($rating)) echo "<span class='rating_container'>".$rating."</span>";
    		if($product->product_type == 'simple') echo "<span class='cart-loading'></span>";
    	echo "</div>";
    }

    Cheers!
    Ismael

    in reply to: problem on iphone: landscape view #218599

    Hey Sergio95!

    Please add this on Quick CSS to reposition the background images on iPad view:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    background-position: 50% 70% !important;
    }
    }

    Replace the ‘70%’ value if necessary.

    Cheers!
    Ismael

    in reply to: Mobile Issues #218598

    Hi schloeskeCS!

    Can you please give us a link to page with the table element? Maybe, we can resize the size of the table on mobile view.

    Cheers!
    Ismael

    in reply to: Remove logo ? #218597

    Hey frvill!

    Add this on Quick CSS to remove the logo:

    .logo.bg-logo {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Is is possible to completely delete the topnav menu? #218596

    Hey Fiorilla!

    Add this on Quick CSS:

    .main_menu {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: fixed logo changing size #218595

    Hey kbrimberry!

    Edit js > avia.js, find this code:

    // decreases header size when user scrolls down
            avia_header_size();

    Replace it with this:

    // decreases header size when user scrolls down
            //avia_header_size();

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Problem with slider #218594

    Hi!

    Which slider did you use? The line break tag should be written like this: <br>

    http://www.w3schools.com/tags/tag_br.asp

    Best regards,
    Ismael

    in reply to: Problem with contact form #218593

    Hey!

    Can you please give us a link to the website? Do you have any plugins installed? Please deactivate them then try again.

    Cheers!
    Ismael

    Hey!

    Did you try this code on functions.php?

    add_action('init','remove_yoast_analysis');
    function remove_yoast_analysis(){
    remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1);
    }

    Cheers!
    Ismael

    in reply to: Main Menu / Parent pages / Sub pages #218589

    Hi AdDesign!

    I’m sorry but you’re not using an Enfold theme.

    Best regards,
    Ismael

    in reply to: Padding space #218588

    Hi!

    Please try this one:

    .page-id-421 .content {
    padding: 5px 0 5px 0 !important;
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: changing font color in widget area #218585

    Hi chrisholemar!

    You can add this on Quick CSS:

    .widgettitle {
    color: red;
    }

    Best regards,
    Ismael

    in reply to: Space Between Paragaphs #218584

    Hi!

    Can you please give us a link to the page?

    Regards,
    Ismael

    in reply to: Grid on a single portfolio page #218583

    Hi Vital!

    You can add this one. Specify the min and max height of the grid preview images:

    .grid-image img {
    width: 100%;
    display: block;
    max-height: 200px;
    min-height: 200px;
    }

    Best regards,
    Ismael

    in reply to: Portfolio grid excerpt as link #218579

    Hi der_mueller!

    Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 412:

    $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false)).">".$excerpt."</div>" : '';
    

    Replace it with with this code:

    $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false))."><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$excerpt."</a></div>" : '';
    

    Add this on Quick CSS to change the text color of the excerpt:

    .grid-entry-excerpt.entry-content a {
    color: gray;
    }

    Regards,
    Ismael

Viewing 30 posts - 60,991 through 61,020 (of 67,145 total)