Viewing 30 results - 1,951 through 1,980 (of 142,943 total)
  • Author
    Search Results
  • #1480706

    Hi,

    Try to remove this css code:

    .av-masonry-container {
        background: red;
    }
    

    And keep (https://kriesi.at/support/topic/background-colour-of-masonry-alb-element/#post-1480699). The Colors > Custom Background Color should be applied to the entire masonry element after removing it. You can also try this css code:

    #top .av-masonry.av-m04fp9di-542ac160671eb8fd749f26843e3e2910 {
        background-color: brown;
    }
    

    Best regards,
    Ismael

    #1480691

    Hey fanlokbun,

    Thank you for the inquiry.

    Did you try the other suggestion in the thread? https://kriesi.at/support/topic/masonry-gallery-fade-in-on-load/#post-1366942

    Best regards,
    Ismael

    #1480688

    Hi,
    that is strange. For us in our company it jumps either with or without Sidebar plugin on Firefox/Chrome/Safari – Android/iOS.

    It seems mostly happend after the last flipbox is flipped, if your going back to the top.

    Best regards,
    Martin

    cobaltsapphire
    Participant

    Certain pages on my website https://7saturdaysfinancial.com/ is having display issues where it is not showing stylized and the menu is display as text as opposed to the three bars. Pages where I’ve seen this issue appear are the FAQ page, the Blog page, the home page. Happens on both desktop and mobile. I have screenshots if you would like a visual as well.

    #1480664

    Hi,

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

    Best regards,
    Rikard

    #1480655

    Ismael,

    I asked WPML and they came up with this solution.

    So I expect that because of this XML, I would see an ID and LANGUAGE attribute that I can change with WPML per language version. But I do not.

    Greetings,
    Gerben

    • This reply was modified 1 year ago by envis.
    #1480651

    you have on those post-types different classes on body tag ( or #top).
    so you can differ by :
    #top.page
    #top.single-portfolio
    #top.single-post

    so try:

    .responsive #top.page  {
      font-size: 13px !important;
    }
    .responsive #top.single-post {
      font-size: 16px !important;
    }
    .responsive #top.single-portfolio  {
      font-size: 19px !important;
    }
    #1480643
    fanlokbun
    Participant

    Hi I want the image in the masonry gallery to fade in when they first load like this site:
    https://aswarbyrectory.com/
    I added the css in this thread but it isn’t working:

    Any ideas?
    Thanks

    #1480637

    ich sehe du hast die Enfold Option des Merging bei css und js eingestellt. Hast du das mal neu generieren lassen?
    Unter Performance – ganz unten.

    Im Übrigen wird deine Seite in meinem Desktop Safari auch nicht mit der Schrift dargestellt.

    #1480621

    see section on top : https://webers-testseite.de/flexed/
    ( the other way is for more komplex styling – thats gridlayout )

    #1480616

    Hi,

    Regarding the scroll issue, this might help:

    https://kriesi.at/support/topic/pop-up-lightbox/#post-1429477
    https://kriesi.at/support/topic/inline-popup-enabler-not-working/#post-1371459

    This adds the no-scroll class name to the popup link.

    Best regards,
    Ismael

    #1480584

    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

    #1480577

    The problem, of course, is that the height of a responsive background will always be smaller on a mobile phone. So unless you want to reduce the size of the logo by the same amount, “nailing” the logo to a specific position will not work. I have already tried to achieve this by using values relative to the screen width.

    test this :

    #top .html5-video .overlay {
      position: absolute;
      width: 25vw !important;
      height: 21.25vw;
      min-width: 140px;
      min-height: 119px;
      max-width: 411px;
      max-height: 349px;
      padding:15px;
      top: 80px;
      left: 50px;
    }
    @media only screen and (max-width:767px) {
      #top .html5-video .overlay {
        top: 20px
      }
    }
    #1480575

    just remove those

      border-radius:20px;
      background-color:rgba(0,0,0,0.1);
      backdrop-filter:blur(6px)

    so it is only for that selector:

    #top .html5-video .overlay {
      position:absolute;
      width:25vw !important;
      height:21.25vw;
      min-width:140px;
      min-height:119px;
      max-width:411px;
      max-height:349px;
      top:12vw;
      left:8vw;
      padding:15px;
    }
    #1480573

    OK – and the scroll-to-top issue? It’s not great on mobile where the form disappears at the bottom of the page.

    #1480565

    ok – sometimes the value had to be set to important – if another rule is set the same way.
    there is inside one of your css:

    .responsive .container {
      max-width: 1310px !important;
    }

    so you had to change that one selector to :

    .responsive #top #wrap_all .html5-video .container {
      max-width: 100% !important;
      width: 100%;
      padding:0;
    }
    #1480564

    In reply to: Sticky element

    This reply has been marked as private.
    #1480532

    https://webers-testseite.de/html5-video-fanlokbun-2/
    test my example page on your phone if it is working there.

    I’m not sure if there’s anything else I can tell you, other than what you can see on the page.
    On top ? Well it is the first color-section on that page. If you like to have it behind header – then you had to choose the enfold transparency option for the page.

    Color-Section with custom-class: html5-video ; inside that color-section a code-block element and column (custom-class: overlay) with your image (logo). The width of that column is ruled by css.

    If you do not need an overlay for your video – then put inside only the codeblock element.

    #1480528

    I’m not sure if there’s anything else I can tell you, other than what you can see on the page.
    On top ? Well it is the first color-section on that page. If you like to have it behind header – then you had to choose the enfold transparency option for the page.

    Color-Section with custom-class: html5-video ; inside that color-section a code-block element and column (custom-class: overlay) with your image (logo). The width of that column is ruled by css.

    #1480525

    ok will try that.
    When the form opens it makes the page scroll to the top.
    I see a problem also if I click on the link and then close it, if I click on it again the form doesn’t show up.
    Do you know what’s causing that?

    #1480515

    Hi Guenni007
    https://webers-testseite.de/html5-video-fanlokbun-2/ seems to work okay.
    Sorry I am a bit thick. How do I add this to the top of the page.
    Many thanks for all your help.

    #1480505

    Hi Ismael,

    Thanks for the fast response and the helpful reply.

    I think we finally have it working! My initial testing looks good, I’ll let you know if I hit any more issues with it once I shift it to the live site. Perhaps keep this open for another week or two, I’ll let you know when it can be closed.

    Thanks, really appreciate the help.

    Tim.

    PS – Could I suggest that having a transparent header for mobile be considered for inclusion in the theme options (rather than custom CSS)? It seems like something that would be good to have as a feature, since a transparent header is already included for desktop.

    #1480503

    Hi,

    Thank you for the update.

    We removed the screenshot. Try to include thi css code to remove the top padding on pages with transparent headers:

    .html_header_top.html_header_sticky.html_header_transparency #top #wrap_all #main {
        padding-top: 0 !important;
    }

    Make sure to place this below the first css rule suggested above, inside the css media query.

    Best regards,
    Ismael

    #1480502

    Hi,

    Thank you for the inquiry.

    You need to click the X icon in the top right corner of the tab section content. Please check the screenshot below.

    View post on imgur.com

    If you need more assistance, please feel free to open another thread.

    Best regards,
    Ismael

    #1480499

    Hi,

    Thank you for the inquiry.

    You may need to remove the css rules that define specific dimension to the video on different screens sizes such as this:

    .bheAnimation {
        background-color: #fff !important;
        width: 807px !important;
        height: 504px !important;
    }

    Then, try to add this to make sure that the whole video is visible within the container:

    #top .avia-video .mejs-container, #top .avia-video .mejs-container video {
        object-fit: contain;
    }

    This might create black spaces around the video.

    Best regards,
    Ismael

    #1480497
    finchkelsey
    Participant

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #ccbtp80 .post-entry-26494 .flex_column.av_one_fourth {
    max-width: 48%!important;
    clear: none!important;
    float: left!important;
    }

    Hi, this is not working across browsers to get 1/4 columns to display side by side.

    I would think mobile layout would be easier in Enfold by now.

    Thank you

    #1480490

    1. #f2f0eb Dandelion-post-background2.png (in the Media tab).
    2. This is one of the category pages: /category/issue-1/. As with all the category pages, there is no category title at all. Only the posts within the category display. I need to add an H2 text category title at the top.
    3. I tried the Categories Images plugin but it didn’t work, as images didn’t display on the category page.
    4. Same colour and image as #1.

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

    @media only screen and (max-width: 1439px) { 
    	.single-product .avia-svg-icon svg:first-child,.single-product .avia-svg-icon img[is-svg-img="true"] {
        height: .5em;
        width: .5em;
    }
    #top.single-product .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
    	margin-top: 9px;
    }
    #top.single-product .av-slideshow-ui.av-loop-manual-endless .avia-slideshow-arrows > a, #top.single-product .av-slideshow-ui .avia-slideshow-arrows.av-visible-prev > a.prev-slide, #top.single-product .av-slideshow-ui .avia-slideshow-arrows.av-visible-next > a.next-slide {
    	width: 30px;
    	height: 30px;
      line-height: 30px;
    }
    }

    After applying the css, please clear your browser cache and check.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    Screen Shot 2025 03 30 at 7.08.03 AM

    Best regards,
    Mike

    #1480463

    You can do that with code-block element inside color-section. Best is to better select – a custom class for the color-section.
    in my example page it is: html5-video

    see code and example on : https://webers-testseite.de/html5-video-embed/

    btw: if you change some declaration inside the given css code – this overlay might be fixed :
    (change means not to replace the whole rule but just to f.e. change the position to fixed – the rest of the declarations had to be in place.)
    f.e.:

    .responsive #top #wrap_all .html5-video .container {
      clip-path: inset(0 0 0 0);
    }
    
    #top .html5-video .overlay {
      position: fixed;
      top: 0;
      transform: translate(-50%, 25vw);
    }

    or you shift the next section over the first one … etc.

    #1480454

    Hi Mike, thanks so much for replying!

    I would like the user to have a more pleasant experience when entering the site, with a video running on the page without the visual pollution that appears with the vimeo or youtube player.
    Simply the video running, and a phrase on top of it, for the 20 or 30 seconds that it is, until the loop.
    I haven’t managed to do this yet. Even in the slide layer.
    Any other tips?
    Thanks!

Viewing 30 results - 1,951 through 1,980 (of 142,943 total)