Forum Replies Created

Viewing 30 posts - 49,291 through 49,320 (of 67,534 total)
  • Author
    Posts
  • in reply to: New CSS for H5 #446175

    Hi MattNat!

    Thank you for using Enfold.

    For safari, you can use the .avia-safari selector and .avia-msie for internet explorer. What’s the purpose of the code?

    Best regards,
    Ismael

    in reply to: Website Responsiveness issues #446173

    Hi!

    The color sections should be wrap inside the wrap_all container. It’s not the case in your installation. Did you add any html tags inside the page? Please make sure that all tags are closed properly. Or deactivate any plugins that render additional containers inside the page, popup plugins for example. There maybe an extra div which breaks the site layout.

    Cheers!
    Ismael

    in reply to: Masonry Gallery in mobile #446172

    Hey mediasauce!

    Thank you for using Enfold.

    Add this in the Quick CSS field to remove the captions on mobile:

    @media only screen and (max-width: 767px) {
    figcaption.av-inner-masonry-content.site-background {
      display: none;
    }}

    Cheers!
    Ismael

    in reply to: archive titles #446170

    Hey!

    Add this in the functions.php file:

    add_action( 'ava_after_main_title', 'ava_archive_title_mod');
    
    function ava_archive_title_mod() {
    	if(is_category()) {
              echo avia_title(array('title' => avia_which_archive(), 'breadcrumb' => false));
    	}
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: center logo #446167

    Hey hasbeat!

    Thank you for using Enfold.

    Please give us a link to the website. Are you trying to center the logo horizontally or vertically? You can adjust the Menu and Logo Position inside the Header options panel.

    Regards,
    Ismael

    in reply to: Stopping headers from being all uppercase #446166

    Hey!

    Thank you for using Enfold.

    Please provide a link to the page with the title, we would like to check it. Try to remove browser cache then reload the page as suggested above.

    Regards,
    Ismael

    in reply to: Relevanssi issues #446164

    Hi WolfvanHaeren!

    Thank you for using Enfold.

    Please add this in the functions.php file to limit the number of posts for each post type to 3:

    add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);
    function avf_modify_ajax_search_query($search_parameters)
    {
    parse_str($search_parameters, $params);
    $params['numberposts'] = 3;
    $search_parameters = http_build_query($params);
    return $search_parameters;
    }

    You can adjust the numberposts value if you want.

    Cheers!
    Ismael

    in reply to: Editing Pricing Table, Editing padding #446163

    Hi!

    Replace this code:

    /*Custom Padding table points*/
    .cfg-pointtable{
    margin-left: 0px !important;
    padding: 0px 0 !important;
    }

    with this:

    .cfg-pointtable li {
      margin-left: 0;
      padding: 0px 0;
    }

    Cheers!
    Ismael

    in reply to: Woocommerce titels under products are not readable #446162

    Hi!

    Use this in the Quick CSS field to change the product title color:

    .products .product h3, .products .product h4, .products .product h5, .products .product h6 {
      color: red !important;
    }

    Cheers!
    Ismael

    in reply to: Change the order of the div elements (responsive) #446161

    Hi!

    Create two sections with the same content. On the other section, the section for mobile devices, always add the image column before the text content. Use css media queries to show or hide a specific section. Or add another media query like the one above. Adjust the screen width to 480:

    @media only screen and (max-width: 480px) {
    .flex_column.av_two_fifth.avia-builder-el-12.el_after_av_three_fifth.avia-builder-el-last {
    position: relative;
    top: -50px;
    padding-top: 120px;
    }
    .flex_column.av_three_fifth.first.avia-builder-el-9.el_after_av_hr.el_before_av_two_fifth {
    padding-top: 175px;
    }
    .avia-image-container.avia_animated_image.avia_animate_when_almost_visible.right-to-left.av-styling-.avia-builder-el-27.avia-builder-el-no-sibling.avia-align-center.avia_start_animation.avia_start_delayed_animation {
    position: relative;
    top: -370px;
    }
    .flex_column.av_three_fifth.first.avia-builder-el-23.el_after_av_hr.el_before_av_two_fifth {
    top: 200px;
    }}

    Adjust the top position and top padding values.

    Cheers!
    Ismael

    in reply to: Twitter social share buttons link to homepage #446160

    Hi!

    There is a cache plugin installed. Try to purge the cache or disable the cache plugin then check it again. Make sure that you have the latest version 3.1.5.

    Best regards,
    Ismael

    in reply to: Masonry Gallery images are too small #446158

    Hi!

    The lightbox use the Large thumbnail size in Settings > Media panel. Set the max width and height to 9999. Regenerate the thumbnails after.

    Regards,
    Ismael

    in reply to: Advanced Editor changes Post-Template #446156

    Hi!

    Please update the the theme to 3.1.5. That should fix the issue. Increase the wp memory limit as well: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    Hey!

    Try to activate the breadcrumbs then check these products. There is an internal server error when I checked these:

    http://lysetremblayjewelry.ca/shop/afghan-garnet-bracelet-ly13-021b
    http://lysetremblayjewelry.ca/shop/afghan-garnet-bracelet-ly13-022b

    This one works OK, breadcrumb is activated:

    http://lysetremblayjewelry.ca/shop/black-onyx-and-smoky-quartz-bracelet-ly14-010b

    Please contact your hosting provider. This is a sample of the error:

    http://lysetremblayjewelry.ca/shop/lapis-lazuli-earrings-ly13-020e Failed to load resource: the server responded with a status of 500 (Internal Server Error)

    Cheers!
    Ismael

    in reply to: Blog posts, related posts #446152

    Hey!

    That is a related post. Please check your own screenshot. You got two posts with the same featured image:

    Mindfulness i kampen mod alzheimers
    Lær på 1 minut: Styrk din produktivitet med 30%

    Cheers!
    Ismael

    in reply to: Menu #445876

    Hi!

    Add this:

    .html_header_top.html_bottom_nav_header .header-scrolled .main_menu ul:first-child { height: 27px; }
    .html_header_top .header-scrolled .main_menu ul:first-child > li a {
      height: 27px;
      line-height: 27px;
    }

    Regards,
    Ismael

    Hi Alperito!

    Thank you for using Enfold.

    Not sure if that logo is free. Try to create your own logo here:

    http://logotypemaker.com/logo-maker
    https://www.graphicsprings.com/start-your-logo

    Best regards,
    Ismael

    in reply to: Moving "back to top" button to left side #445864

    Hey kbasanti!

    Thank you for using Enfold.

    Please add this in the Quick CSS field:

    #scroll-top-link {
      left: 50px;
      right: auto;
    }

    Best regards,
    Ismael

    Hi jimrajan!

    Thank you for using Enfold.

    This is more of a plugin issue. Really not sure how to disable that. Please contact the plugin author.

    Regards,
    Ismael

    in reply to: image alt tags missing #445845

    Hi!

    Looks like you’re using the revolution slider. If I am not mistaken, there is an option to add an alt and title attribute in the slider layer. If the option is not available, please contact the plugin developer.

    Cheers!
    Ismael

    in reply to: diagonal menu #445837

    Hi webon_israel!

    Thank you for using Enfold.

    That is a slanted black transparent image called black_angle_bot.png below the header. Size is 1920x94px. Use google inspector or firebug to see it. You can create one then add it by using this in the Quick CSS field:

    header#header:after {
      content: '';
      background: url(IMAGE URL HERE) no-repeat top left;
      width: 100%;
      height: 94px;
      display: block;
      position: absolute;
    }

    If you don’t know how to create an image like that, please hire a freelance developer.

    Regards,
    Ismael

    in reply to: Border Featured Image #445821

    Hey wendyaarts!

    Thank you for using Enfold.

    Try this in the Quick CSS field:

    .grid-image img {
      border-style: solid;
      border-width: 5px;
      border-color: white !important;
    }

    Regards,
    Ismael

    in reply to: Buttons Position iPad portrait #445817

    Hi!

    Try to add this:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive #av_section_1 .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth, .responsive #av_section_1 .av_one_fourth.first {
      display: none;
    }
    
    body #av_section_1 .flex_column.av_one_fourth {
      margin-top: 0;
      clear: none;
    }}

    Edit the color section then add a unique id in the Section ID field. Use “custom-section” for example. Replace the #av_section_1 selector with the section id #custom-section.

    Best regards,
    Ismael

    in reply to: Remove border in portfilio grid and align mega menu #445795

    Hey mdekievit!

    Thank you for using Enfold.

    Try to add this in the Quick CSS field:

    .grid-sort-container.isotope.no_margin-container {
      width: 100.5%;
    }

    Is this happening on both chrome and firefox?

    Regards,
    Ismael

    Hi!

    I guess the problem is with these following categories:

    2-piece Jewelry Set
    3-piece Jewelry Set

    Try to change 2 with the word “Two” and 3 with “Three”. This product works OK without the said categories. It was included in the 3piece category:

    http://lysetremblayjewelry.ca/shop/black-onyx-and-smoky-quartz-bracelet-ly14-010b

    Cheers!
    Ismael

    Hi!

    Then WP Engine switched to the ENFOLD Child theme – my shop works well
    I then preview with the parent ENFOLD theme and select the correct menu to display – the preview for single product does not display

    It is working when you activate the child theme? Do you remember adding or editing any files which might be related to the breadcrumb inside the child theme folder? Please switch to the child theme. We would like to check the breadcrumb structure. Post the login details to the staging site: http://lysejewelry.staging.wpengine.com/shop (hosted on WPengine)

    Cheers!
    Ismael

    in reply to: Anchor Link does not jump correct #445570

    Hey Bernd!

    Thank you for using Enfold.

    Please remove this css code:

    #klinik_haeuser, #klinik_traeger, #klinik_lage, #klinik_mutter-kind-kur, #video, #team, #kontakt, #impressum {
    min-height:50px;
    }

    Best regards,
    Ismael

    in reply to: Mobile Menu #445568

    Hi!

    Try to delete the comments directly in the database. Use this plugin: https://wordpress.org/plugins/wp-optimize/

    Please create a backup of the database before using the plugin.

    Cheers!
    Ismael

    in reply to: Buttons not working in iOS #445566

    Hi!

    Thank you for visiting the support forum.

    I checked the site but it’s not using Enfold or any of the avia themes.

    Cheers!
    Ismael

    in reply to: Upgrade Path Suggestions #445555

    Hi form2function!

    Thank you for using Enfold.

    Since you’re using a very old version of the theme, you may need to reconfigure the theme options and recreate broken elements on the theme. The section that will surely break is the header because of the new header configurator. Any modified templates (like header.php, single.php etc) in the child theme will need proper modifications as well. The sidebar should be OK unless you used special characters in the custom widget area name. You might find misplaced widgets.

    Please create a backup before updating the theme.

    Cheers!
    Ismael

Viewing 30 posts - 49,291 through 49,320 (of 67,534 total)