Forum Replies Created

Viewing 30 posts - 8,701 through 8,730 (of 67,449 total)
  • Author
    Posts
  • in reply to: cant open 2nd page of search results #1399630

    Hi,

    Sorry for the delay. We are not still not sure what is causing this issue in your site. The pagination in the search results works properly on our own installation. Please provide the S/FTP details in the private field so that we can check the theme files.

    For the meantime, please try to download the latest version of the theme again from your Themeforest account and override the current theme folder in your installation.

    Best regards,
    Ismael

    in reply to: Columns out of line on ipad in portrait #1399627

    Hi,

    There seems to be a lack of space for the columns on tablet view, which is why the title and buttons are not aligned properly. We may need to adjust the breakpoint of the columns and make them fullwidth on tablet devices. Please add this css code.

    @media only screen and (max-width: 1024px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
        display: block;
      }
    
      .responsive #top #wrap_all .av-break-at-tablet-flextable, .responsive .av-layout-grid-container.av-break-at-tablet {
        display: block;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Change promo line old product bar #1399623

    Hey mescalytequila,

    Thank you for the inquiry.

    You can add this css code to adjust the font size of the price and the strike-through.

    #top .price, #top .price span, #top del, #top ins {
        display: inline;
        text-decoration: none;
        font-size: 32px;
        line-height: 32px;
        font-weight: 600;
    }
    

    You should remove this css code to vertically align the strike-through with the price.

    .price span {
        font-size: 32px!important;
        color: #89b82b!important;
    }
    

    After doing the modifications above, you may need to toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    Hey adepreter,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the site URL in the private field. For the meantime, please make sure that the theme is updated to version 5.4.1 and temporarily disable the Performance > File Compression settings. We will check the site once we get the URL.

    Best regards,
    Ismael

    in reply to: Caption size when converted to mobile view #1399619

    Hey es.design.ma,

    Thank you for the inquiry.

    You can actually set different font sizes for various screen sizes and devices in the slides’ Styling > Font Sizes panel. Look for the Font Size default – used for all screen sizes(no media query) settings in the panel, then click the little devices icon to adjust the font size for a specific device.

    Best regards,
    Ismael

    in reply to: enfold Fullwidth Easy Slider caption text drop shadow #1399618

    Hi,

    Thank you for the inquiry.

    1.) You have to adjust the color and background color values in the css rule. The values are the same as the current styles, which is why you are not seeing any difference.

    2.) To apply the style to other special heading elements, just remove the unique element ID or class name in the css.

    .av-special-heading h1 {
        text-shadow: 2px 2px black;
    }
    

    Best regards,
    Ismael

    in reply to: sidebar ascending vs descending #1399617

    Hey satucker,

    Thank you for the inquiry.

    This is possible but you will have to directly modify the posts query in the enfold/framework/php/legacy/class-framework-widgets.php file. Please look for this code around line 944.

    $new_query = array(	"posts_per_page"=>$count, 'tax_query' => array(
    														array( 'taxonomy' => $this->avia_term,														   
        'field' => 'id',															   
        'terms' => explode(',', $cat),															   
        'operator' => 'IN')														 
      )														);
    

    We have to add the order parameter to the query and set its value to “DESC”.

    $new_query = array("order" => "DESC", "posts_per_page"=>$count, 'tax_query' => array(
    														array( 'taxonomy' => $this->avia_term,	
    
        'field' => 'id',															   
        'terms' => explode(',', $cat),															   
        'operator' => 'IN')														 
      )														);
    

    Best regards,
    Ismael

    in reply to: Font sizes in footer widgets #1399616

    Hey Tanja,

    Thank you for the inquiry.

    Are you referring to the phone number in the third footer column? If yes, then you can use this css code to adjust the font size of the phone number.

    body#top .footer_color section#custom_html-2 a {
        font-size: 24px;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css modifications.

    Best regards,
    Ismael

    Hey,

    Thank you for the question.

    The following css code should add some space between the promobox content and button.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .responsive .avia-promocontent {
        margin-bottom: 50px;
      }
    }
    

    If you need to apply this to a specific promobox, edit the element, apply a custom css class name to it and use this class name in the css rule above.

    Best regards,
    Ismael

    • This reply was modified 3 years ago by Rikard.
    in reply to: Remove single backslash from breadcrumb #1399614

    Hey profumopuntoit,

    Thank you for the inquiry.

    You can use this css code to hide the first separator or forward slash in the breadcrumb.

    .breadcrumb-trail .trail-before + span + span {
        display: none !important;
    }
    

    Best regards,
    Ismael

    Hey woogie07,

    Thank you for the inquiry.

    You can add the phone number as a text widget in the header. Please check the documentation below for more info on how to register a widget area and display it in the header.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    in reply to: Forum Issues #1399612

    Hi,

    Thank you for update.

    I did what you had said, but it did not fix the problem.

    Looks like you are using the Advance Layout Builder to create the content of the product page and to create the product gallery, you added an Image and Gallery element. Please edit the gallery element and make sure that the Styling > Gallery Styling is set to the second option (Big image with thumbnails below).

    You have to switch to the default editor if you want to use the default product gallery instead.

    Best regards,
    Ismael

    in reply to: Use custom font #1399611

    Hey juliafriebe81,

    Thank you for the inquiry.

    The font is not from Google, so it might not work as expected. Please note that the Custom Font Manager is intended for Google fonts. You may need to register the font manually using the @font-face rule and add some css rules to apply it to the corresponding elements.

    // https://www.w3schools.com/cssref/css3_pr_font-face_rule.php
    // https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face

    Best regards,
    Ismael

    in reply to: Enfold Theme #1399610

    Hey Julia Friebe,

    Thank you for purchasing the theme.

    In order to open questions in the forum, you have to register an account first using your purchase code. Please go to the link below, place the purchase code in the provided field, then click the verify button.

    // https://kriesi.at/support/register/

    After the registration, just visit the link below to open a new thread in the forum.

    // https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    in reply to: Previous Next Button on mobile device #1399609

    Hi,

    Glad to know that @Guenni007 helped you out. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hey William,

    Thank you for the inquiry.

    Since the featured post category or tag has been removed, the class name tag-featured-post is no longer applied. You have to adjust the css a bit.

    #top.home #wrap_all .main_color .post-entry h2.post-title {
        font-size:32px;
    }

    You may need to apply a custom css class name to the Blog Post element and adjust the css.

    Best regards,
    Ismael

    in reply to: Search Results, Post Excerpt, Three Dots #1399605

    Hey William,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to append a read more link to the excerpt.

    add_filter( 'excerpt_more', '__return_empty_string', 21 );
    function wpse_134143_excerpt_more_link( $excerpt ) {
        if( is_search() ) {
            $excerpt .= sprintf( 
                '... <a href="%s">%s</a>.',
                esc_url( get_permalink() ),
                __( 'Read more' )
            );
        }
    
        return $excerpt;
    }
    add_filter( 'the_excerpt', 'wpse_134143_excerpt_more_link', 21 );
    

    Best regards,
    Ismael

    in reply to: Slideshow in Gridrow #1399604

    Hi,

    Thank you for the inquiry.

    Make sure that the image URLs in the script are using https instead of http. Let us know if this helps. If it is still not working, please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: style=”font-weight: 400;” everywhere #1399603

    Hey profumopuntoit,

    Thank you for the inquiry.

    The theme doesn’t create this table of content and inline styles. It might be generated by a plugin or a custom script. Did you try to temporarily disable the plugins?

    Best regards,
    Ismael

    Hey Sabine,

    Thank you for the inquiry.

    What is the format of the video? Have you tried adding a preview or fallback image? You can find this option just below the video uploader in the Content > Select Video toggle.

    Best regards,
    Ismael

    in reply to: Forum Issues #1399487

    Hey Brian Ram,

    Thank you for the inquiry.

    When did you purchase the theme? Your support license may have expired already and you may need to extend it. Please checke the documentation below for more info about support renewal.

    // https://help.market.envato.com/hc/en-us/articles/207886473-Extending-and-Renewing-Item-Support

    Regarding the product gallery issue, please make sure to update the theme to version 5.4.1, then toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Parallax Bug with overlapping elements #1399486

    Hi,

    Thank you for the inquiry.

    We can’t seem to reproduce the issue on our end. Would you mind providing a short clip of the issue? Please use imgur, savvyify or dropbox for the screenshot.

    And the stuttering is also not occurring on our end (checked Chrome). What is the specs of your desktop/laptop? Please try to check the site on a different browser without extensions.

    Best regards,
    Ismael

    in reply to: enfold Fullwidth Easy Slider caption text drop shadow #1399485

    Hi,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the slideshow buttons.

    #top .avia-slideshow-button {
        border-radius: 3px;
        text-transform: uppercase;
        padding: 15px 16px;
        display: inline-block;
        margin-top: 20px;
        text-decoration: none;
        font-weight: bold;
    }
    
    #top .avia-button.avia-color-orange, #top .avia-button.avia-color-orange:hover {
        background-color: #edae44;
        border-color: #CA9336;
        color: #fff;
    }
    
    #top .avia-slideshow-button.avia-color-light {
        padding: 12px 16px;
        background-color: rgba(0,0,0,0.2);
    }

    For the special heading, this css should work.

    .av-special-heading.av-nlr5x-bb365aeef7c91c871c871ed41100301d h1 {
        text-shadow: 2px 2px black;
    }
    

    You may noticed that we used the unique class name of the special heading element in the css code above.

    Best regards,
    Ismael

    in reply to: Vertical menu on left side- how to set #1399483

    Hey tonyiatridis,

    Thank you for the inquiry.

    You should be able to adjust the menu items in the Appearance > Menus panel. Have you tried that?

    You should also reset the Settings > Reading panel to default and select the front and blog page in the Enfold > Theme Options panel.

    Best regards,
    Ismael

    in reply to: remove spacing between #1399482

    Hey Angeladlh,

    Thank you for the inquiry.

    You can use this css code to adjust the padding and margin of the post delimiter.

    .flex_column .template-blog .post_delimiter {
        margin: 0;
        padding: 0;
    }
    

    This should adjust the space below the read more link.

    Best regards,
    Ismael

    in reply to: Diagonal Sektion Top Border Styling #1399481

    Hi,

    Thank you for the inquiry.



    @IHEA
    : As suggested above, you can add another color section with a bottom divider and place it above the other section.

    Thank you for the suggestions @Guenni007!

    Best regards,
    Ismael

    in reply to: Partner/Logo Element showing Grey Background #1399480

    Hey Ryan,

    Thank you for the inquiry.

    We cannot seem to see the issue on our end. Would you mind providing a screenshot of the logo with the gray background? Please use imgur, savvyify or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Advanced Layerslider Mobile Full Screen #1399479

    Hi,

    Great! Glad to know that this has been resolved. Please let us know in a different thread if you have more questions regarding the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Installieren von Enfold bei WP – Fehlermeldung #1399478

    Hey danikra74,

    Thank you for the inquiry.

    You are uploading the whole package to the site instead of the theme zip file. You to have to extract the the actual theme zip file from the package first before uploading it to the site. Please open the package, look for the enfold zip file, then extract it.

    Best regards,
    Ismael

    in reply to: Audio player (Sermons) page contains pastor Coleman #1399477

    Hi,

    Glad we could be of help. Please do not hesitate to open another thread when you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 8,701 through 8,730 (of 67,449 total)