Viewing 30 results - 481 through 510 (of 142,582 total)
  • Author
    Search Results
  • Hi,

    Thank you for the update.

    This is what happens when we toggle the css rule — you’ll notice how the document moves when we turn it on and off. The issue is definitely caused by the css rule. Please check this short video:

    Best regards,
    Ismael

    #1489907

    Hi,

    Thank you for the update.

    You can add this css code to adjust the width of the featured images in mobile view, make sure they don’t overflow outside the screen.

    @media only screen and (max-width: 989px) {
    
      /* Add your Mobile Styles here */
      #top.single-post .fullsize .template-blog .big-preview img {
        width: 100%;
        min-height: auto;
        object-fit: contain;
      }
    }

    Result:

    Screenshot-2025-10-07-at-12-31-30-PM

    Best regards,
    Ismael

    #1489902

    This cache thing is killing me. I can’t figure out why desktop looks different than mobile view. Especially the logo and burger icon. The logo is supposed to have white wording and then blue. I have it setup correctly in the theme editor Transparency Options. Let me know if you can help please. I probably need the CSS cleaned up because I exported from another project. I just don’t know the code and what is needed.

    Thanks again for all your help.

    #1489894

    I might just go with the curly section divider to make this easier. Question though, why would my logo not update on mobile view, when it is correct on desktop view. This top logo has white wording when open, then switches to blue, when scrolled. But on mobile, they are both blue. Any ideas? I did all the cache already and nothing.

    Thanks!

    #1489892

    Thank you for your help. We found a solution. You can close the topic.
    Best regards Barbara

    atx_m
    Participant

    Hi all,
    I already did some research for this topic but all the solutions (CSS, Enfold settings etc.) I found didn’t work.
    I was able to remove the title from the page, but not the featured image. Here’s what I want to do:
    I want to create all our blog posts with Gutenberg. On the blog posts I want to remove the featured images and the title. I want to define both with Gutenberg. I want to use the featured images only on archive pages (categories etc.). How can I completely remove the feature image from the post page?

    #1489879

    that is why i first tried to give you a header solution.
    Then you do not need to add that lines manually to every top section in your content. – and if you got a slider or a gird-row on top no extra solutions are necessary. – But there are different Problems – f.e. what to do when first section got a collered background.

    The separator solution: As part of next section this should not come into conflict with your menu text. Or do you have on other installations an overlapping first section to header area ?
    The problem wil be now – what to do if you got a grid-row or a slider on top.

    #1489870

    In reply to: .scroll-down-link

    Thank goodness for DeepL — I did take French as my third subject in high school, but that was a good 40 years ago ;)

    #top .ti-widget .ti-controls .ti-next,
    #top .ti-widget .ti-controls .ti-next:after,
    #top .ti-widget .ti-controls .ti-prev:after,
    #top .ti-widget .ti-controls .ti-prev {
      background: none !important;
      border: none !important;
      outline: none !important;
    }
    
    #top .ti-widget .ti-controls .ti-next {
      right: -20px;
    }
    
    #top .ti-widget .ti-controls .ti-prev {
      left: -20px;
    }
    
    #top .ti-widget .ti-controls > div:after {
      font-size: 52px;
      color: #ebebeb;
    }
    
    #top .ti-widget .ti-controls .ti-prev:hover:after,
    #top .ti-widget .ti-controls .ti-next:hover:after {
      color: #2c1175 !important;
    }

    maybe you have allready included some of those rules.

    Hi,
    When I check your test page the “opening frame” is relly the background image so use this css to hide:

    #top.page-id-11644 #av_section_1 {
            background-image: none;
    }

    note the page ID in the css, remove or adjust for your working page.
    Then leave Ismael’s script to stop the loop and add this script to end on the last frame/second, your video is 29s so the script ends on 28s. Adjust for future videos and adjust the page ID.
    Add this to your child theme functions.php:

    function pause_video_on_last_sec() { ?>
      <script>
    if (document.body.classList.contains('page-id-11644')) {
        var x = document.getElementsByClassName("avia_video");
        var i;
        for (i = 0; i < x.length; i++) {
            x[i].addEventListener("timeupdate", function(){
                if(this.currentTime >= 28) {
                    this.pause();
                }
            });
        }
    }
    </script>
      <?php
    }
    add_action( 'wp_footer', 'pause_video_on_last_sec', 99 );

    Best regards,
    Mike

    #1489841

    I even copied the page and put on a test page, and it all works: https://sonoranwaters.com/TEST/
    It’s only the home page top part that is effected somehow.
    Please let me know what you can do.
    Thanks!

    #1489840
    bemodesign
    Participant

    Please help!
    On my home page only, and only the top Color Section, is a blank space at the top, where the image and headline should be. I works and shows right when I am in Edit mode, but when its live, It shows a huge white space. I tried to Purge all cache, but ti still isn’t showing. and only on the home page top. other page all work. I even tried to copy the color section to other pages, and it work. Just wont work on home page.

    Admin is below. Please let me know if you can fix.

    Thanks!

    #1489838

    min-height! why didn’t I think of that?! ;).

    Thanks again, Ismael — that worked for desktop but not the phone, for some reason — removing the first class seemed to make it work for both, and I only needed about half the height:

    .tribe-events-c-subscribe-dropdown {
       min-height: 175px;
    }

    Thanks again, as always!

    #1489836

    Hi,
    Try looking in your child theme functions.php file, I believe that you are using this custom script to add it.

    Best regards,
    Mike

    #1489829

    Hey Paloma,

    Your theme settings should stay the same, but you should export and save them locally from Enfold->Import/Export in case you should need them at some point.

    The update to 7.1.2 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/

    Best regards,
    Rikard

    #1489823
    clbdcnpafe
    Participant

    Hello.

    We have forgotten how to edit the portion of the top part of our webpage where it reads: “Who Is NPAFE Supporting Right Now?”. It links to a webpage that we have replaced. We thought the code might be in Quick CSS but we don’t see it. Home page link in Private content.

    Where should we go to change the link?

    Many thanks.

    #1489813
    Paloma
    Guest

    Good morning, I currently have a client who has the Enfold theme version 3.0.8 installed on their website. My question is, if we buy the theme with the latest version and install it, will the configuration be maintained or will we have to start from scratch?

    #1489812

    In reply to: .scroll-down-link

    first remove this from your css

    .ti-prev:hover::after, 
    .ti-next:hover::after {
      color: #FFF !important;
      background-color: var(--enfold-header-color-color);
    }

    then:

    #top .ti-widget .ti-controls .ti-next,
    #top .ti-widget .ti-controls .ti-next:after,
    #top .ti-widget .ti-controls .ti-prev:after,
    #top .ti-widget .ti-controls .ti-prev {
      background: none !important;
      border: none !important;
      outline: none !important;
    }
    
    #top .ti-widget .ti-controls .ti-next {
      right: -10px;
    }
    
    #top .ti-widget .ti-controls .ti-prev {
      left: -10px;
    }
    
    #1489810

    or a little more elegant:

    #top #header:not(.header-scrolled-full) #header_main {
      box-shadow: none;
    }
    
    #header_main:before {
      content: "";
      position: absolute;
      left: 0;
      top: calc(var(--enfold-header-height) - 150px);
      width: 100%;
      height: 200px; 
      background-image:url("data:image/svg+xml;base64,PHN2ZyBpZD0iRHJlaS1MaW5pZW4iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgODAwIDE4MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CgogICAgPHN0eWxlPgogICAgICAuc3QwIHsKICAgICAgICBmaWxsOiAjOTQxMDA5OwogICAgICB9CgogICAgICAuc3QxIHsKICAgICAgICBmaWxsOiAjZWZhNDBiOwogICAgICB9CgogICAgICAuc3QyIHsKICAgICAgICBmaWxsOiAjMDA4MGEyOwogICAgICB9CiAgICA8L3N0eWxlPgoKICA8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNjE0Ljg4NSw2My44MzVjLTEwNS4xNzksMjUuNTMxLTI2NC44MDQsNTUuOTY1LTQyNy45NTQsNTUuOTY1LTEwMi4xMjcsMC0xNjAuOTctMTcuODkxLTE4Ni45MzEtMjguNTI5djE0Ljk5MWMyNS45NiwxMC42MzcsODQuODA0LDI4LjUyOSwxODYuOTMxLDI4LjUyOSwxNjMuMTUsMCwzMjIuNzc1LTMwLjQzNCw0MjcuOTU0LTU1Ljk2NSw5NS42MjYtMjMuMjEyLDE2NC43ODItNDYuNjc5LDE4NS4xMTUtNTMuODM1di0xNC45OTFjLTIwLjMzMyw3LjE1NS04OS40ODksMzAuNjIyLTE4NS4xMTUsNTMuODM1WiIvPgogIDxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik02MTQuODg1LDc4LjgyNWMtMTA1LjE3OSwyNS41MzEtMjY0LjgwNCw1NS45NjUtNDI3Ljk1NCw1NS45NjUtMTAyLjEyNywwLTE2MC45Ny0xNy44OTEtMTg2LjkzMS0yOC41Mjl2MTQuOTljMjUuOTYsMTAuNjM3LDg0LjgwNCwyOC41MjksMTg2LjkzMSwyOC41MjksMTYzLjE1LDAsMzIyLjc3NS0zMC40MzQsNDI3Ljk1NC01NS45NjUsOTUuNjI2LTIzLjIxMiwxNjQuNzgyLTQ2LjY3OSwxODUuMTE1LTUzLjgzNXYtMTQuOTljLTIwLjMzMyw3LjE1NS04OS40ODksMzAuNjIyLTE4NS4xMTUsNTMuODM1WiIvPgogIDxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik04MDAsMzkuOTgxYy0yMC4zMzMsNy4xNTUtODkuNDg5LDMwLjYyMi0xODUuMTE1LDUzLjgzNS0xMDUuMTc5LDI1LjUzMS0yNjQuODA0LDU1Ljk2NS00MjcuOTU0LDU1Ljk2NS0xMDIuMTI3LDAtMTYwLjk3LTE3Ljg5MS0xODYuOTMxLTI4LjUyOXYxNy4zMjZjMzAuMDc1LDExLjQ0Miw4OS4yMjgsMjcuMjAyLDE4Ni45MzEsMjcuMjAyLDE2NC44MjUsMCwzMjUuODg0LTMwLjcxMiw0MzEuOTcyLTU2LjQ3Niw4OS4wNC0yMS42MjQsMTU1LjM3LTQzLjQ5MiwxODEuMDk4LTUyLjM4MXYtMTYuOTQzWiIvPgo8L3N2Zz4=");
      background-size: 100% 100%;
      transition: opacity 1s ease-in-out;
    }
    
    #top #header.header-scrolled #header_main:before {
      opacity: 0;
    }
    

    svg with more convex look.

    #1489807

    try this
    ( but it looks better if your header does not have shadow )

    use next css code instead

    play with top position – what fits best for you.
    and maybe you set the height of the before pseudo-container to an absolute value ( e.g: height: 120px;) then it will not shrink with the header height.

    #1489800
    bemodesign
    Participant

    I want these similar 3 colored lines at the top of each page. What is the best option to do this so that it looks good on all size screens and mobile view? The lines can be straight also, Just thinking 3 lines somehow.

    RIght now it looks ok, but not on mobile.

    Thanks!

    #1489785
    sky19er
    Participant

    Hey, sorry to ask about a plugin (The Events Calendar), but I’m trying to get the Subscribe to Calendar dropdown at the bottom of https://nlsladev.wpengine.com/services/workshops/ to show in full, without getting cut off at the bottom. I was able to get it to show on desktop by removing the padding in the list items, but it’s still getting cut off on the phone. I tried switching to Twenty Twenty and it looks like opening that drop pushes down whatever content’s below it, so the full dropdown shows. Any idea how I might get the full dropdown to show (even on the phone) in Enfold? Thanks and lmk if you have any questions.

    #1489783

    Here we are again. We updated the theme and now the blog images aren’t working correctly. I added the code you gave me last time to the custom css, but it’s still not working. Here’s what I added:

    #top.single-post .fullsize .template-blog .big-preview img {
    width: 1200px;
    min-height: 630px;
    }

    I tried regenerating thumbnails, but no change.

    Why isn’t this working?

    PhatJ
    Participant

    Hi

    I am having an issue with the Background Video in the colour section.
    When the video finishes, it shows the opening frame.
    how do I get it to stop at the end frame?

    If I add the video in the advanced layerslider, it does not revert to the initial frame.

    I have both examples on the url given

    Thanks in advance for any assistance

    #1489779

    try – and have a look if this fits your needs of “button” look-alike:

    #top .avia-content-slider .slide-entry-wrap {
      display: flex !important;
      flex-flow: row wrap;
      justify-content: space-between;
      gap: 30px;
      
    }
    
    #top .avia-content-slider .slide-entry {
      width: unset;
      flex: 1 1 calc(25% - 30px);
      margin: 0 !important;
      display: flex;
      flex-flow: column wrap;
      background-color: #eee;
      padding: 15px
    }
    
    @media only screen and (max-width:1049px) {
      #top .avia-content-slider .slide-entry {
        flex: 1 1 calc(50% - 30px);
      }
        #top .avia-content-slider .slide-entry a  {
        margin-left: 0;
      }
    }
    
    @media only screen and (max-width:767px) {
      #top .avia-content-slider .slide-entry {
        flex: 1 1 100%;
      }
    }
    
    .slide-content {
      margin-bottom: 60px
    }
    
    .entry-footer {
      width: 100%;
      position: absolute;
      left: 0;
      bottom: auto;
      top: calc(100% - 60px);
      display: flex;
      justify-content:  space-evenly;
      flex-flow: row wrap;
    
    }
    
    .entry-footer a {
      margin-top: 10px;
      display: inline-block;
      padding: 3px 8px;
      transition: all 1s ease;
    }
    
    .entry-footer .read-more-link a {
      background-color: #000;
      color: #FFF !important;
    }
    
    .entry-footer a:hover {
      box-shadow: 0 3px 5px #aaa;
      transform: translateY(-5px) scale(1.03);
    }
    
    .entry-footer .biljetter a {
      background-color: #bf2e11;
      color: #FFF !important;
    }
    
    .entry-footer a path {
      fill: #FFF;
    }

    and check the responsive behaviour aswell.

    #1489774

    so if you only like to link if there are biljetservice links on the images above the titles – then take snippet two from this link

    #1489769

    In reply to: z value

    That sounded good, however. It is not responding, so I am still doing something wrong.

    I called the blue box (column) in Developer Setting – Custom CSS Class: bluebox

    Then I replace the code in CCS under General Styling in Theme Options with:

    .responsive #top #wrap_all .flex_cell.bluebox {
    z-index: 999;
    position: relative;
    overflow: visible;
    }

    But it still is not above.
    See mobile view on this page:
    https://www.valhallaenergies.com/wiig/what-we-do/swivels

    #1489755

    If you look at the link i sent and scroll down a bit i want similar buttons in the top row as the row beneath. I built it wrong from the start. I need the events to be posts in order to use scheduling. https://storasoder.se/nojesteaterntestsida/

    #1489738

    Hi,

    Thank you for the update.

    The text (or the column containing the text) in the “Empecemos” section is animated, as well as the columns and sections above it. Try to save the home page as a template, then create a test page and disable all animations from the top of the page down to the “Empecemos” section. After that, test the page and let us know the result.

    Best regards,
    Ismael

    #1489735

    In reply to: Top Bar – Seperator

    Hey Diana,
    Try this css:

    #top .social_bookmarks li {
        border-right-style: none;
    }

    After applying it please clear your browser cache and check.

    Best regards,
    Mike

    #1489722

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

Viewing 30 results - 481 through 510 (of 142,582 total)