Forum Replies Created

Viewing 30 posts - 2,641 through 2,670 (of 25,536 total)
  • Author
    Posts
  • in reply to: A little CSS Menu Help #1360569

    Hi Havi,

    I see, can I request for temporary admin access on your site? so I can view the backend and try to reproduce it on my end.
    Just post the credentials privately.

    Best regards,
    Nikko

    in reply to: less than and more than symbol #1360567

    Hi Ramiro,

    Please use the plugin suggested in our documentation as well as follow the instructions there: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters
    Hope this helps.

    Best regards,
    Nikko

    Hi Tia,

    I would suggest moving those scripts and styles from the codeblock to the child theme.
    Here’s how you can add the script/style in footer: https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-footer-section
    Hope this helps.

    Best regards,
    Nikko

    in reply to: WPML Language Switch Header to the left of burger menu #1360565

    Hi cktanju,

    Please try to add this CSS code:

    @media only screen and (max-width:767px) {
      html #top #wrap_all .header_color #header_meta .avia_wpml_language_switch {
        float: left;
      }
    }

    If this does not help, please give us a link to your site.

    Best regards,
    Nikko

    in reply to: Support? #1360563

    Hi Michael,

    You’re welcome, I could see you’re registered on the forum as well :)

    (3) H1 Styling
    Edit the Special Heading and change Heading Style from Default Style to Heading Style Modern (left)

    (4) H1 padding on mobile
    I could see this CSS code in your site (margin-bottom is set to height relative to the size of the font) which is causing the issue.

    h1 {
        font-size: 2.7em !important;
        letter-spacing: -0.1px !important;
        line-height: 1.3em !important;
        margin-bottom: 0.8em !important;
        text-decoration: none !important;
    }

    Just remove the margin-bottom or just apply it on desktop.

    For #5 & #6, please give us temporary admin access, so we can check further on the issue.
    Just post the credentials privately.

    Best regards,
    Nikko

    in reply to: Enfold Child vs. Newsletter Mail Poet #1360562

    Hi Paul,

    Thanks for giving us admin access.
    I tried to check on the plugin however since this is the first time I used the plugin and it’s a bit overwhelming.
    Can you give us steps on how you usually do things so we can try to reproduce it on our end? I’ll be testing it on a new install to make sure that there’s no conflict with other plugins.

    Best regards,
    Nikko

    in reply to: A little CSS Menu Help #1360559

    Hi Havi,

    Do you mean having a video that autoplays?

    Best regards,
    Nikko

    in reply to: Problem with PHP 8.0 #1360459

    Hi Alwin,

    That is also something I have not figured out :D
    There are some people who are running PHP 7 who have that issue as well but get fixed with just manually replacing those wrong single quotes, so I just assumed that it does not work on certain servers but now I know it is true on certain PHP versions.
    Anyway, I’m really glad that the issue is fixed on your end.

    Best regards,
    Nikko

    in reply to: Remove gray frames top and bottom #1360456

    Hi Franz,

    I apologize for causing confusion, and the numbers I gave were incorrect.
    On the top area, there’s a paragraph above the widget with a default bottom margin of 0.85em which is 14.5px, and the column above it is 20px so the total space on the top area is 34.5px.
    On the bottom area of the widget, there’s the nav menu wrapper which is 24px in bottom padding plus the overall wrapper which is 20px bottom padding, total bottom space is 44px.
    If you want to increase the space top and below then just replace:

    @media only screen and (max-width:767px) {
      #top #wrap_all .flex_column.avia-builder-el-last {
        margin-bottom: 0px;
      }
    }

    with (adjust the padding values as you see fit):

    @media only screen and (max-width:767px) {
      #top #wrap_all .flex_column.avia-builder-el-last {
        margin-bottom: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
      }
    }

    If you would like to reduce the space then please add a CSS class name for the Color Section (apply this on all sections that uses a sidebar with nav menu widget) for example you’ll add the class mysection, then add this in Quick CSS to remove the space (just adjust the value as you see fit):

    @media only screen and (max-width:767px) {
      /* Remove top space */
      #top #wrap_all .mysection .flex_column.first {
        margin-bottom: 0;
      }
    
      #top #wrap_all .mysection .flex_column.first p:last-child {
        margin-bottom: 0;
      }
    
      /* Remove bottom space */
      #top #wrap_all .mysection .widget:last-child {
        padding-bottom: 0;
      }
    
      #top #wrap_all .mysection .av-content-full {
        padding-bottom: 0 !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Problem with PHP 8.0 #1360454

    Hi Alwin,

    I apologize for the inconvenience.
    Can we request for cPanel access? so we can check further on the issue as I can’t seem to replicate the issue you mentioned.

    Best regards,
    Nikko

    in reply to: Colored line under header #1360452

    Hi Alan,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Invisible Hotspots #1360451

    Hi Alan,

    I see, please add this CSS code:

    .responsive #top .av-image-hotspot-pulse {
        background-color: transparent;
    }

    Best regards,
    Nikko

    in reply to: Vertical Line in front of text block #1360422

    Hi anristudio,

    You’re welcome :)
    I believe what you want is to set a minimum height, if yes, then please use this CSS code instead:

    #top .left-border {
        border-left: 1px solid black;
        padding-left: 30px;
        min-height: 100px;
    }

    Just adjust the min-height value.

    Best regards,
    Nikko

    in reply to: Remove gray frames top and bottom #1360421

    Hi Franz,

    Since the CSS code on your site is not added via CSS but via Theme Customizer, I added it there.
    Go to Appearance > Customize > Additional CSS.

    Best regards,
    Nikko

    in reply to: Change lost username field text to something else #1360419

    Hi webdesignphx,

    Thanks for using Enfold and have a great day :)

    Best regards,
    Nikko

    in reply to: Invisible Hotspots #1360410

    Hi Alan,

    Can you try adding this CSS code (just adjust it as you see fit):

    .responsive #top .av-image-hotspot {
        width: 60px;
        height: 60px;
    }
    
    #top .av-hotspot-container .av-image-hotspot_inner {
        background-color: transparent;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Site Health status alerts #1360407

    Hi laptophobo,

    Can you try to switch it to a default WordPress Theme? and see if the issue still persists.
    If it still shows after switching then it may be more of a server configuration issue.

    Best regards,
    Nikko

    in reply to: A little CSS Menu Help #1360406

    Hi havi,

    You’re very much welcome :)
    I also did not clear the cache on my end, after clearing it I was able to see both colors.

    Best regards,
    Nikko

    in reply to: Cannot Update Enfold without destroying layout #1360404

    Hi AudioSuites2018,

    It’s a pleasure helping you :)
    Thanks as well for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Enfold Child vs. Newsletter Mail Poet #1360402

    Hi Paul,

    I tried to login however I’m getting this error:

    Unbekannte E-Mail-Adresse. Überprüfe sie noch einmal oder versuche es mit deinem Benutzernamen.

    Please check.

    Best regards,
    Nikko

    in reply to: A little CSS Menu Help #1360400

    Hi havi,

    I have checked it however it’s purple on my end and I don’t see the code anywhere.
    It should specifically be targeting menu-item-32 as you can see in the code I gave.

    Best regards,
    Nikko

    in reply to: Height slider responsive #1360399

    Hi Antonio,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    #top .container {
        max-width: 100%;
        padding: 0;
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Remove gray frames top and bottom #1360398

    Hi Franz,

    I have added the code and it’s showing equal space on top and bottom (30px on both sides).
    Please review your site.

    Best regards,
    Nikko

    in reply to: White Bar Underneath Avia-slideshow #1360395

    Hi tayloramatheny,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Tooltip text wrap + image opacity #1360394

    Hi kellyCraftMedia,

    I see, please try adding this CSS code in Quick CSS:

    #top .avia-tooltip {
        width: auto;
    }

    Best regards,
    Nikko

    in reply to: Problem with PHP 8.0 #1360393

    Hi Alwin,

    I tried the same thing on my end using WP 6.0.1 and the following PHP versions 8.0.7, 8.1.0, 7.4 and didn’t have any issue whether it’s after_setup_theme or init.
    Can you try to switch your PHP version to 7.4 or 8.1? let us know if this helps.

    Best regards,
    Nikko

    in reply to: I need a little Help #1360392

    Hi Mehran MzH,

    I checked your site and it seems that the issue with the clicks is fixed and the js error is also not showing in the web console.
    As for the titles, I don’t seem to see any cut on my mobile phone, I tried to compare the text in desktop and don’t see the difference, can you give us a screenshot?

    Best regards,
    Nikko

    in reply to: A little CSS Menu Help #1360391

    Hi havi,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top #wrap_all #header.header_color .av-menu-button-colored.menu-item-32 > a .avia-menu-text {
        background-color: #ea526e;
        border-color: #ea526e;
    }

    Best regards,
    Nikko

    in reply to: Colored line under header #1360390

    Hi Alan,

    There’s no option to change it however it can be changed by adding this CSS code in Enfold > General Styling > Quick CSS:

    #header_main {
        border-bottom: 4px solid #284492;
    }

    thickness: 4px
    border style: solid
    color: #284492 (you can use color names instead of hex code)
    Just adjust the code as you see fit.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: How to upload icons #1360389

    Hi Alan,

    Is it in webfont format? (file types: .eot, .svg, .ttf, .woff, and .woff2)
    If yes, then you can go to Enfold > Import/Export > Iconfont Manager, then upload the fonts in zip form, for further information you can check our documentation: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
    Also, you can try to download icons in https://fontello.com/ and see the format.

    Best regards,
    Nikko

Viewing 30 posts - 2,641 through 2,670 (of 25,536 total)