Viewing 30 results - 87,991 through 88,020 (of 142,855 total)
  • Author
    Search Results
  • #712917

    In reply to: Home page movement

    Hi,

    Please try the following as well in Quick CSS:

    @media only screen and (min-width: 768px) and (max-width: 990px) {
      #top .avia-slider-testimonials.avia-testimonial-wrapper {
        min-height: 300px;
        max-height: 300px;
      }
    }

    Best regards,
    Rikard

    #712916

    Hi Epic,

    Try adding this code at the bottom of Quick CSS:

    @media only screen and (max-width:767px) {
      #header #header_main {
        z-index: 9999 !important;
      }
    
      .responsive #top .logo {
        display: none;
      }
    
      #top #advanced_menu_toggle {
        right: auto;
        left: 0;
        top: -33px;
        z-index: 9999;
      }
    
      .home #full_slider_1 ul.avia-slideshow-inner, 
      .home #full_slider_1 ul.avia-slideshow-inner .avia-slide-wrap {
        height: 300px !important;
      }
    
      .home #full_slider_1 ul.avia-slideshow-inner .avia-slide-wrap img {
        height: 300px;
        width: auto;
        max-width: none !important;
        position: relative;
        left: -35%;
      }
    }

    Let us know if it works :)

    Cheers!
    Nikko

    Hi,

    Glad we could help, please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712909

    In reply to: Menu links colors

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712908

    Hi,

    No problem, please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712904

    Hi there,
    I have the probably same problem.
    If I use more galleries on one page, there is a problem with scroll detection.
    Bottom galleries are loaded too late, after you scroll much more under the top of gallery itself.
    I have added the code above, but it doesn’t help.
    I disabled animations and also without results.
    My browser is Firefox (latest), but in Chrome is it the same.
    This problem is dependending on image arrangement in the gallery. When I optimized galleries to minify the overflowing orphand on the last row, I made the situation better!
    But please, because we want to use generaly this kind of gallery on thi site, check the javascript which is measuring the height of all elements or tell me how to load all at once like without scrolling down.

    • This reply was modified 9 years, 4 months ago by norbou.
    #712896
    newtonlinchen
    Participant

    Hello,

    The Enfold theme “SHOP” has a beautiful top bar.

    I’m using the “default” Enfold theme, but I would like to use that top bar in my website (without having to use a top bar plugin).

    But… I would like to use it… With a invisible header (“header is invisible and appears once the users scrolls down”).

    How can I do it?

    #712888
    frankeee
    Participant

    Hey, I just bought your theme again (also becouse of your support here).

    I have positioned your drop-down search (search icon on top right) in the header. You can see it here:
    http://testing.webdesigner-hh.de/

    The problem is when scrolling down, the search-icon will disappear. The search icon should stay on the same position. I try a lot but cannot solve this problem.

    In private content you will find access data. Can you please have a look?

    #712887

    Hi!

    Looking at the screenshot I realized you need it on other sections as well not those sections that has id set to hello, to do this I think you need to enable Custom CSS Classes, here is how to enable and use it: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Next, put custom-gridrow in Custom CSS Classes textfield (add this to all gridrows that has the same layout including the one that has id set to hello). In Quick CSS, just all #hello to .custom-gridrow, replace this code that I gave:

    @media only screen and (max-width:1024px) and (min-width:768px) {
      #top #hello .av_one_half {
        display: flex;
        width: 100%;
        padding: 50px 100px 20px !important;
      }
    
      #top #hello .av_one_half.avia-builder-el-last {
        padding-bottom: 50px !important;
      }
    }

    And replace it to:

    @media only screen and (max-width:1024px) and (min-width:768px) {
      #top .custom-gridrow .av_one_half {
        display: flex;
        width: 100%;
        padding: 50px 100px 20px !important;
      }
    
      #top .custom-gridrow .av_one_half.avia-builder-el-last {
        padding-bottom: 50px !important;
      }
    
      #top .custom-gridrow .av_one_half.avia-full-stretch {
        min-height: 500px;
      }
    }

    I have added the 3rd block for those fullwidth images, so it doesn’t look too low, just change the value as you see fit. Hope this helps :)

    Cheers!
    Nikko

    #712874
    HannaVogt
    Participant

    HI!
    My desktop page looks great and now I try to edit the mobile version. Is it all CSS-based or is there a plugin or spot in the theme where I can do that? What if I want to add a slide show for mobile instead of a video on desktop. Can I add a section that is only visible on mobile/desktop?
    Thanks!
    Best,
    Hanna

    • This topic was modified 9 years, 4 months ago by HannaVogt.
    #712857
    Mercheric
    Participant

    Hi.
    I am using Multilingualpress to translate my sites.
    But now I am experiencing a problem with enfold. When I copy content from one page to another using the Multilingualpress translation block at the bottom of my page, nothing is copied in the translated page, the new page is empty. This happens only when I use Advanced Page Builder in my original page.

    In this post you wrote that there are no major issues, but I disagree.

    Riccardo

    and once again: if you have a non shrinking header – you know your header hight ! from Enfold Dialog
    if you choose small i guess it is 50px – for big …. look yourself. this comes to scroll-offset on main!

    so if you have a color section with fixed positioning add a custom class – maybe topfixed or something like this:

    .responsive #top .avia-section.topfixed {
        background-position: center 50px !important;
    }

    or left or right. etc. the 50px (look to the bride theme) on css you find the background-position : center top but without regarding the header hight.

    on responsive case the sticky header is lost – and scrolls away – so background position has to get the top (0px value) !!!

    @media only screen and (max-width: 768px) {
    .responsive #top .avia-section.topfixed {
        background-position: center 0 !important;
    }
    }
    • This reply was modified 9 years, 4 months ago by Guenni007.
    #712851
    Gavin Dixon
    Participant

    Am trying to change the background colour of the boxed layout on this test site am doing.

    In GENERAL STYLING -> BODY BACKGROUND tab i have the correct body background colour i wish to use which is
    #006941 green colour, but its still showing a dark grey colour for some unknown reason?

    Any ideas why this is happening please and a fix for this?

    Thanks,

    #712832

    if you have a shrinking header there is an old thread of mine because sometimes it is not so important that the scroll-offset is missing.
    But sometimes it is.

    https://kriesi.at/support/topic/color-section-on-top-fixed-background-attachment-positioning/

    and a not so perfect solution for desktop browsers. This is a problem with header and shrinking header height. The scroll offset seems to be not considered of the positioning.

    see here the fix (for desktop browsers – not for mobile): http://webers-testseite.de/kaetz/leistungen/

    edit : look to the page above with your mobile ! i placed that “bride” image near the bottom.
    and if you look to it in landscape mode you see that the image is cropped at the bottom !

    • This reply was modified 9 years, 4 months ago by Guenni007.
    #712811

    I have a sidebar on the right on the product page (Woocommerce). The problem is that it is showing the sidebar page widgets instead of the single product page widgets.

    I added to functions.php the following

    // adjust settings on init
    add_action(‘init’,’ava534345953_init’, 50);
    function ava534345953_init() {
    add_action( ‘woocommerce_after_single_product_summary’, ‘avia_add_sidebar’, 25);
    }

    function avia_close_image_div() {
    echo “</div>”;
    }

    function avia_add_sidebar() {
    if(is_product()) {
    $avia_config[‘currently_viewing’] = “shop_single”;
    get_sidebar();
    }
    }

    And I added to Quick CSS

    .single-product-main-image {
    width: 25%;
    }

    .single-product-summary {
    overflow: hidden;
    width: 45%;
    float: left;
    margin-right: 5%;
    }

    .single-product .sidebar {
    width: 25% ;
    }

    #top div.product .woocommerce-tabs {
    width: 75%;
    float: left;
    }

    #712807

    Hi,

    Great, glad you got it working :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712788

    Hi mattb1169!

    Try adding this code in Quick CSS (located in Enfold > General Styling) for header dark overlay:

    #top #wrap_all .header_color.av_header_transparency {
        background: rgba(0,0,0,0.8) !important;
    }
    
    #top .header_bg {
        background: transparent !important;
    }

    As for this part of your statement

    I have placed a screen on the actual photo of the first image in the slider, but obviously that’s not responsive so doesn’t adjust when screen size changes.

    Can you elaborate more on the details.

    Cheers!
    Nikko

    #712779

    Hey Antonio,

    You can check out our recommended plugins thread here: https://kriesi.at/support/topic/recommended-plugins/, if you can’t find anything in there I would simply installing the plugin you linked to and see if it works or not.

    Best regards,
    Rikard

    #712774

    Hi!

    Try adding this code in your Quick CSS:

    .home #av_section_1 .avia-button {
        position: relative;
        top: -300px;
    }

    just adjust the top value. Hope this helps :)

    Regards,
    Nikko

    #712764

    Hi,

    Great, glad you got it working and that your learning :-)

    Let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712763

    Hi, Andy,

    That was a partial help but like I say, getting a fix required you to look at the way the page was displaying in order to sort the problem. I went googling and found some info that helped resolve the problem and the background is now displaying correctly.

    Just in case someone else wants a solution, here is the code that works for all devices I tested and all browsers I tested:

    html.html_boxed {
    background: url(https:// etc) right center no-repeat repeat fixed;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    }

    I tried all sorts of other combinations and they either did not work at all, or only worked on a laptop.

    Regarding the incorrect area of the image that was displaying, you will note that “center center” was the problem. By using “right center” or “left center” the problem was sorted. I am not a coder so cannot explain it, but that’s what worked.

    For some reason the “no repeat” instruction works fine for a laptop but after the size issue was resolved meant that on mobiles only one image was displayed in the background (correct size) in the middle of the front page. So it was necessary to add a repeat for the vertical dimension. The image now displays with the correct size and is repeated as needed to cover the whole vertical display area of the page.

    If anyone is having this problem I recommend checking out:

    and
    http://www.css3.info/preview/background-size/

    #712760

    Hi,

    Ok, thanks for the feedback. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712759

    Hi,

    Great, glad you got it working. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712758

    Hi,

    Thanks for the details, please try the following in Quick CSS under Enfold->General Styling:

    #top div .av-light-form input[type='text'], .av-light-form .button {
        color: #fff2d6 !important;
        border-color: #fff2d6 !important;
    }

    Best regards,
    Rikard

    #712757

    Hey!

    I’m not sure if misaligned, you meant the text fields/dropdown fields are stuck on top without any space, if it is just add this code to Quick CSS:

    #top select#media-attachment-filters, #top select#media-attachment-date-filters, #top input#media-search-input {
        margin-top: 11px;
    }

    Hope this helps.

    Regards,
    Nikko

    #712754

    Hi,

    Great, glad we could help and thanks for sharing the colours :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #712738

    Hi,

    Your site looks more or less the same on desktop as it does on mobile on my end, could you try to explain a bit further and/or post a screenshot highlighting what you would like to do please?

    Best regards,
    Rikard

    #712737

    Hi,

    Please add this in the Quick CSS field.

    #header {
        margin-top: -50px;
    }

    Best regards,
    Ismael

    #712734

    Ismael,
    Thanks for getting back to me.

    Just to make sure…. I have two of these “add_filter” codes. Which one do you want me to replace?
    Ron

    Please see below:
    add_filter(‘avf_builder_boxes’, ‘avia_register_meta_boxes’, 10, 1); //Add meta boxes to custom post types
    function avia_register_meta_boxes($boxes)
    {
    if(!empty($boxes))
    {
    foreach($boxes as $key => $box)
    {
    $boxes[$key][‘page’][] = ‘sfwd-courses’;
    $boxes[$key][‘page’][] = ‘sfwd-lessons’;
    $boxes[$key][‘page’][] = ‘sfwd-topics’;
    $boxes[$key][‘page’][] = ‘sfwd-quiz’;
    }
    }
    return $boxes;
    }

    /*Controls look of gravity form fields */
    add_filter( ‘woocommerce_gforms_strip_meta_html’, ‘configure_woocommerce_gforms_strip_meta_html’ );
    function configure_woocommerce_gforms_strip_meta_html( $strip_html ) {
    $strip_html = false;
    return $strip_html;
    }

    /*removed image from product page*/
    remove_action( ‘woocommerce_before_single_product_summary’, ‘woocommerce_show_product_images’, 20 );

    add_filter(‘avf_builder_boxes’,’custom_post_types_options’);

    function custom_post_types_options($boxes)
    {
    $boxes[] = array( ‘title’ =>__(‘Avia Layout Builder’,’avia_framework’ ), ‘id’=>’avia_builder’, ‘page’=>array(‘sfwd-courses’, ‘sfwd-lessons’, ‘sfwd-topic’, ‘sfwd-quiz’), ‘context’=>’normal’, ‘expandable’=>true );
    $boxes[] = array( ‘title’ =>__(‘Layout’,’avia_framework’ ), ‘id’=>’layout’, ‘page’=>array(‘sfwd-courses’, ‘sfwd-lessons’, ‘sfwd-topic’, ‘sfwd-quiz’), ‘context’=>’side’, ‘priority’=>’low’);
    $boxes[] = array( ‘title’ =>__(‘Additional Portfolio Settings’,’avia_framework’ ), ‘id’=>’preview’, ‘page’=>array(‘sfwd-courses’, ‘sfwd-lessons’, ‘sfwd-topic’, ‘sfwd-quiz’), ‘context’=>’normal’, ‘priority’=>’high’ );

    return $boxes;
    }

Viewing 30 results - 87,991 through 88,020 (of 142,855 total)