Viewing 30 results - 3,661 through 3,690 (of 142,852 total)
  • Author
    Search Results
  • #1467198

    on default the masonry content is placed over the whole image at the bottom.
    You can avoid it by setting ( you had to play a bit with the values ) them outside the image.:

    this to quick css:

    .av-masonry-entry:not(.av-masonry-item-no-image) {
      margin-bottom: 145px !important;
    }
    
    #top .av-inner-masonry {
      overflow: visible;
    }
    
    .av-fixed-size .av-masonry-entry .av-inner-masonry-content  {
      bottom: unset !important;
      top: calc(100% - 1px);
      min-height: 135px;
    }
    #1467197
    ivolt360
    Participant

    I am building the website, and until yesterday, the theme was mobile responsive. However, now the desktop view is appearing on mobile screens, and the theme is no longer responsive. Please resolve this issue.

    #1467186
    Stegemueller
    Participant

    Hello again Ismael and Rikard

    (We had this very good conversation: Show number of comments per post in Masonry: https://kriesi.at/support/topic/show-number-of-comments-per-post-in-masonry/ – and you asked me to open a new thread if I had any more questions).

    I think the “Number of comments” is “eating” too much of my images in the three grids on the front page. It’s as if the texts move upwards in the image, so it loses a bit in height and it’s not very nice.(My website is: https://stegemueller.dk)

    My developer writes:

    The challenge is that those hooks are pretty hard to figure out. But could you ask Enfold if we could link it to the date instead of the title, so we could put the date and number of comments in the same line. Would that be a solution?

    Is this something you can help with?

    I send credential again i Private Content.

    Very kind regards

    #1467178

    The Ajax search shows only a few results. The results are displayed in a certain order (newest; page order …); Your search term is on a page that is older than the pages shown.
    The number – how many results are displayed – is set to 5 by default in Enfold. This makes sense for the normal placement at the top inside main menu. Where you have the search, you might want to increase this a little.

    Incidentally, if you only want to display pages (or posts) there, you could also restrict this to these post types.

    Put this to your child-theme functions.php :

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

    Hey Dzimnikov,

    Thank you for the inquiry.

    You might have added the shortcode of a Testmonial slider in the category description. Please try this shortcode:

    [av_testimonials style='slider' columns='2' grid_style='' control_layout='av-control-default' slider_navigation='av-navigate-arrows' nav_visibility_desktop='' nav_arrow_color='' nav_arrow_bg_color='' size-name='' av-desktop-font-size-name='' av-medium-font-size-name='' av-small-font-size-name='' av-mini-font-size-name='' size-subtitle='' av-desktop-font-size-subtitle='' av-medium-font-size-subtitle='' av-small-font-size-subtitle='' av-mini-font-size-subtitle='' size-content='' av-desktop-font-size-content='' av-medium-font-size-content='' av-small-font-size-content='' av-mini-font-size-content='' font_color='' custom_title='' custom_sub='' custom_content='' animation='fade' transition_speed='' autoplay='true' interval='5' alb_description='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-m15x5rhq' sc_version='1.0' admin_preview_bg='']
    [av_testimonial_single name='Name' subtitle='' check='is_empty' element_template='' src='' src_dynamic='' link='https://' linktext='' one_element_template=''  av_uid='' sc_version='1.0'][/av_testimonial_single]
    [av_testimonial_single name='Name' subtitle='' check='is_empty' element_template='' src='' src__locked='' src_dynamic='' src_dynamic__locked='' name__locked='' subtitle__locked='' content__locked='' link='https://' link__locked='' linktext='' linktext__locked='' one_element_template=''  av_uid='' sc_version='1.0'][/av_testimonial_single]
    [/av_testimonials]

    Best regards,
    Ismael

    #1467173
    Dzimnikov
    Participant

    Hi, need some help with a website I’m working on. This is the exact page I’m referring to: https://www.bonjiglass.com/shop/

    As you can tell, in the top banner, it says [short_code]. Its supposed to have a slider of reviews there. We had set it up before, as per this thread: https://kriesi.at/support/topic/change-background-image-for-mobile/page/4/

    In the past, every time I’ve updated the theme to the latest version, I had to make a change to bring that back. Its been years since I’ve done it though, and forgot how to do it. Could you please help me out here?

    #1467168

    In reply to: Contact Form colour

    Hi,

    Thank you for the update.

    The colour is green which is not on brand for me

    That is the default border color of valid fields. If you want to change it, please add this css code:

    #top #wrap_all .valid .select, #top #wrap_all .valid .text_area, #top #wrap_all .valid .text_input {
        border: 1px solid orange;
    }

    Best regards,
    Ismael

    #1467163

    Thanks for the reply.

    Yes, I want to add the same “second header” to the top of each post.

    I’ve tried a few things since then, and I’ve made the html code for the second header section into a shortcode with “code snipet” and embedded it once at the top of the single.php.
    But this method seems to complicate things when I need to modify the second header.
    All other pages have the content of the second header page loaded at the top of the page with “custom layout” in the “alb”.

    Thanks so much for your help, I really appreciate it.

    #1467149

    I have installed a child theme after all, because it was super easy to do, and imported the parent settings. Everything works great. But… the php code still doesn’t work in functions.php in the child theme.

    I first tried the code from the Enfold documentation page:

    function remove_title_attr(){
    ?>
     <script>
    jQuery(window).on('load', function(){
    jQuery('#wrap_all a').removeAttr('title');
    jQuery('#wrap_all img').removeAttr('title');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    That had no effect. Then I tried the modified code found on this forum page: https://kriesi.at/support/topic/hide-titles-and-descriptions-when-you-hover-on-images-or-thumbnails-of-galleries/#post-981936

    function remove_title_attr(){
    ?>
    <script>
    jQuery(window).load(function(){
      jQuery('#wrap_all img.avia_image, #wrap_all .avia-gallery-thumb img, #wrap_all .avia-gallery-thumb a').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    That didn’t work either. The tooltip still shows up when hovering an image. Hope you can help.

    • This reply was modified 1 year, 6 months ago by paulw185.
    • This reply was modified 1 year, 6 months ago by paulw185.
    #1467128

    Hey paulw185,
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the code and save.

    Best regards,
    Mike

    #1467122
    paulw185
    Participant

    I’ve tried many suggestions on this forum to disable the tooltip with the image title, when hovering over an image. A.o. in these topics:

    https://kriesi.at/support/topic/hide-titles-and-descriptions-when-you-hover-on-images-or-thumbnails-of-galleries/
    https://kriesi.at/support/topic/remove-tooltip-display-of-image-captions/

    But I can’t make it work, or I’m doing it wrong. Need some help. Btw I don’t use a child theme.
    My website: https://wta.nl/
    Portfolio page (with more images): https://wta.nl/portfolio/

    • This topic was modified 1 year, 6 months ago by paulw185.
    • This topic was modified 1 year, 6 months ago by paulw185.
    #1467115

    Hello Ismael,

    I am sorry to say that it was a nice try but it does not work unfortunately … all the buttons continue to not change color with the mouse hover, in particular on the top of homepage https://www.federscacchilazio.com/ you can check the buttons “Comitato” and “Contatti” with the mouse hover they remain blue and not grey also the toher following buttons, apart from the four buttons placed vertically next to each other on the left, those work correctly.. https://app.box.com/s/aajvacjlzcmq6hvt3wvnltuij49w12ag
    I think it is necessary to modify a little the CSS code.

    Thanks again
    Andrea

    #1467105

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1467093

    In reply to: anchor link

    Where did you add the anchor link?

    the item gonna be in the main menu: at the top
    but you can test using THIS link:

    https://novo.strokmatic.com/#Products

    isn’t working because ignores the color section named “products”

    is a theme problem much probably

    the documentation doesn’t mention any extra step to retify my problem

    #1467088

    In reply to: Mega Menu

    be carefull if you install that child-theme on an existing installation!
    Enfold has on Import/Export Options : “Import Settings From Your Parent Theme”. Button –
    This generally works smoothly. The child theme then initially adopts the settings of the parent theme – including the quick css settings.

    But link above to docu can tell you more detailed

    By the way: you do not need to edit this by ftp.
    Mostly there is the opportunity to edit the child-theme functions.php via Dashboard:

    Dashboard – Appearance – theme file editor ( right side click f.e. on functions.php)

    ______________________________

    after that for that test page of mine i have in quick css:

    .avia_mega_div.avia_mega7 {
      right: calc(-100vw) !important;
      width: 95vw;
    }
    
    #top  .avia_mega_div > .sub-menu {
      display: grid !important;
      margin:0;
      gap: 20px 0px;
      grid-auto-flow:row;
      grid-template-columns: repeat(7, 1fr);  /*** that means 7 grid-cells with each 1 fraction (same size)  ***/
    }
    
    #top #header .avia_mega_div > .sub-menu > li {
      display: block !important;
      width: unset;
      position: relative;
    }
    
    #top #header .avia_mega_div {
      max-width: 100vw;  /*** if it is neccessary ***/
    }
    
    @media only screen and (min-width: 990px)  and (max-width: 1199px) {
      #top #header .avia_mega_div > .sub-menu {
        grid-template-columns:repeat(4, 1fr);  
      }
    
      #header .avia_mega_div {
        overflow-y: scroll;  /*** needed - if your mega-div height is too large for your device ***/
        max-height: calc(100vh - 200px);  /*** depends on your header height ***/
      }
    } 
    #1467082

    Hey!

    Thank you, however, I saw the code you changed –
    // Check if the screen width is larger than 777px
    if (window.innerWidth < 320) {
    return; // Exit the script if the screen width is less than 777px
    }

    You’ve changed the 777 to 320
    it didn’t solve the problem.
    It just made the desktop header changes we made apply to mobile also.
    But, on screens smaller than 777 the header needs to be a regular mobile header.
    That’s why you’ve added this code in the first place.
    and when I’m changing the 320 back to 777 the header is on top and just like a regular mobile header, but there is no menu at all and the search icon overlaps the site’s body.

    How can I pix this?
    Thank you
    reut

    #1467081
    Vera
    Participant

    Hi,

    I have a similar question to post-1434296.
    Is it possible to change the number of columns in a masonry grid (f.e. from 4 to 5) for screens that are f.e. wider than 2048px?

    Best regards,
    Vera

    #1467068

    sorry – delete this here – trying to answer to a different topic

    • This reply was modified 1 year, 6 months ago by Guenni007.
    • This reply was modified 1 year, 6 months ago by Guenni007.
    #1467063

    Dear Ismael,

    The site has a news page (with normal posts) where you can see the first two posts with the format “video” and “quote”. They have the icons on top of the image.

    What I want is for the icons for each type of format to appear on the “testimonials” page (with portfolio items).

    As I said, I activated post formats for portfolio items, but the icons do not appear.

    You can see it here: https://dev.triton.pt/bialall/

    Thank you

    #1467053

    Hi,

    You may need to add another 1/4 column at the end of the second row to ensure the columns are the same size as those in the first row. Add this css code to shift the row slightly to the right.

    
    #top .flex_column_table.av-20ndm-838f183c878a6c3bb0dbd9bf9fac481e {
        margin-left: 8%;
    }

    Best regards,
    Ismael

    #1467052

    Hi,

    Try to use this css code to change the hover effect:

    #top .main_color .avia-cookie-consent-modal-buttons-wrap .avia-color-theme-color-highlight:hover {
        color: white;
        background: gray;
        border-color: orange;
    }

    Update the color values as needed.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Add three 1/3 columns in a row. In each column, place an Image element and a Text Block, one below the other. Then, edit each Text Block, navigate to Advanced > Developer Settings, and in the Custom CSS Class field, add the class name av-overlap-text-block. After that, add the following css code to pull the text block upwards and make it overlap the image.

    .av-overlap-text-block {
       margin-top: -100px;
    }

    Best regards,
    Ismael

    #1467046

    Hi,

    Thank you for the screenshots.

    Please add this css code to adjust the fullwidth breakpoint of the Grid Row cells:

    @media only screen and (max-width: 1024px) {
      .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
      }
    
      .responsive #top .container .av-content-small,
      .responsive #top #wrap_all .flex_column,
      .responsive #top #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
      }
    }

    Best regards,
    Ismael

    #1467033

    In reply to: Mega Menu

    you do not need to pre define the place when a new row is started at mega menu!
    you can do that by setting the mega div submenu to a grid layout:

    https://kriesi.at/support/topic/tip-responsive-mega-div/

    but:

    I forgot to tell you that from the mobile phone, so I’m not talking …

    You have a normal text menu on mobile phone? …
    so it’s about the hamburger menu (a mega div with 7 columns next to each other on the cell phone is hardly recommendable)

    next:
    images besides the menu-items text could be placed by doing it manually on label input field on menu page.
    or look to the link – there is a way to have the featured images besides the menu-item link.

    Ah, I found it. I didn’t set a Featured Image and couldn’t find where to do it. I finally found it in the page Settings: the Settings button on the top right of the screen, and then Portfolio Entry > Featured Image.

    Took me a few hours to find it. :-)

    #1467027

    In reply to: Contact Form

    Many thanks Mike!

    Please close this topic.

    #1467003

    In reply to: Site title as H1?

    Hi,
    WordPress General Settings > Site title is the “tab title” and not a SEO H1 tag, for a SEO Page Title, please name the page as you wish and enable the page Layout Title.
    Or you hide this in the page option and manually add a H1 title to the top of your pages by wrapping it with the H1 tag.
    You could have the same H1 title for every page with some javascript, but this is not a good idea for SEO because every page should be different.

    Best regards,
    Mike

    #1467000

    Hey Peter,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-slideshow-button {
        text-transform: none;
    }

    Best regards,
    Mike

    #1466997

    Hey tl55,
    Do you want to add the same “second header” at the top of each post, or a different “second header” at the top of each post?
    I assume that this “second header” will be horizontal at the top and not in the vertical “Left Sidebar” where your header is now.
    Please link to your site with admin login for better context, I don’t think that editing the “single.php” is the best approach, but we probably can offer a better solution once we examin.

    Best regards,
    Mike

    #1466974
    onesmile
    Participant

    Hi there,

    I just installed a new Website a few months ago with a fresh Enfold installation and everything worked just fine. Now, the contact from is not sending out any emails anymore. There is no error code or anything. I checked in the forum, but found no explanation or way to fix it. So could you please help?

    Thanks,
    Katrin

Viewing 30 results - 3,661 through 3,690 (of 142,852 total)