Viewing 30 results - 4,951 through 4,980 (of 142,863 total)
  • Author
    Search Results
  • #1443135

    Hi,
    Thank you for the link to your site and the images, I converted one of them to a png and made the edge transparent and then added this css to your Quick CSS and now the badge shows in the bottom right corner on all pages, desktop & mobile.

    body:not(.wp-admin)::before {
      content: "";
      position: fixed;
      right: 10px;
      bottom: 10px;
      width: 100px;
      height: 50px;
      background-image: url(/wp-content/uploads/2024/05/ISO_9001_farbe_de.png);
      z-index: 99;
      background-size: contain;
      background-repeat: no-repeat;
    }
    

    please clear your browser cache and check and adjust the size and position to suit.

    Best regards,
    Mike

    #1443127

    Hi,
    Thanks, this was a strange issue but I added this css to correct:

    #top #header_main #av-burger-menu-ul,
    #top #header_main .av-burger-overlay{
        height: 100vh;
    }
    

    I tested with Windows in Chrome, Firefox, & Edge and in Android and it now works in all correctly. Please clear your browser cache and check.
    Please note that testing with iPhone 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.

    Best regards,
    Mike

    #1443085
    This reply has been marked as private.

    Hi,
    Ok, thanks for explaining. I personally don’t like JetPack or Autoptimize. I note that when someone has multiple plugins that minifys it starts causing issues because minify tries to remove spaces & semicolons from the code, but then when the next plugin tries to do this it can brake the code.
    When is your web hosting plan up for renewal, the test page that I made doesn’t use any plugins or CDN and only the theme minify option and it seems to do ok in the test.
    Sometimes web hosts put too many customers on a shared server, or a bad actor will be on a server doing spammy things using up the resources, perhaps it would be worth checking out, most hosts offer a 30 day money back trial. Just a thought.

    Best regards,
    Mike

    #1443069

    Hey santanin,
    Thank you for your patience, to make the cells width match the content try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-table.avia-data-table {
    	table-layout: auto;
    }

    The portrait images don’t show on mobile because they have no width like the flag images do, you can try this css that sets a min width for mobile and a max width for desktops, feel free to adjust to suit:

    #top .avia-table.avia-data-table tbody td:nth-child(3) img {
    	min-width: 5em;
    	width: 20em;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Yeah, I mistakenly put the update at the top of that reply (I came back and edited it vs posting new comment).

    I found the issue…It’s jet pack boost’s concatenate css feature.

    I don’t know why I have to use different plugins to accomplish related tasks like minification/concatenation/compression/merging when many apps do all of them, but if I use one app, elements start breaking,

    Yeah, I mistakenly put the update at the top of that reply (I came back and edited it vs posting new comment).

    I found the issue…It’s jet pack boost’s concatenate css feature.

    I don’t know why I have to use different plugins to accomplish related tasks like minification/concatenation/compression/merging when many apps do all of them, but if I use one app, elements start breaking,

    #1443012

    In reply to: home page config

    Hey seomar,
    The white bar at the top was due to your LayerSlider having a space above the background image, I changed the background to “cover” and now it is fixed:
    Enfold Support 5758
    To have a different logo on mobile, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(wp_is_mobile() ) {
        $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }

    change the url to your new logo image
    The reason your LayerSlider is not showing until someone interacts wih it is due to your WPRocket lazy load, you need to add a exclusion
    Enfold Support 5760
    Your EWWW Image Optimizer is also dong the same thing:
    Enfold Support 5762
    I added these for you please clear your browser cache and check, if you still have trouble clear your server cache or disable both plugins.
    for your last question, do you mean this:
    Enfold Support 5764
    it is in your LayerSlider, please change there.

    Best regards,
    Mike

    #1442951

    In reply to: menu items

    Hi,

    Thanks for that. Please try this instead:

    @media only screen and (max-width: 767px) {
      #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul .current-menu-item {
        background: red;
      }
      #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li.current-menu-item  a {
        font-size: 20px;
        color: yellow !important;
      }
    }

    Best regards,
    Rikard

    #1442934
    santanin
    Participant

    Good day,

    I have two questions. Link to my website is in the private field.

    1) I added an Enfold Table element on my page and in one of the columns I added code to display an image using a basic img tag. The image shows great on desktop, but it does not show on mobile. Do you know how to make images in table cells show on mobile?

    2) For the Enfold Table element, is there a way to make the width of each column shrink to match the width of the content in the cell? For example, in the first column of my table, I put a single number in each cell, like “1”, “2”, “3”, etc. The first column is wide and I want it to shrink in width automatically. I don’t want to manually set the size of the width, but have the width automatically shrink to match the cell’s content. Do you know what I mean?

    Thank you!

    robertbwc
    Participant

    Hello, in the shopping cart home page where the products are displayed, how do I change the topics that appear in the dropdown under “Sort By”?
    EX:
    (See example if screenshot in Private Content area)
    Essentially I think I’ll only want them to be able to sort by Name and/or Product ID
    Alternatively, is there a way to get rid of the sort features on that page in case I don’t want them?

    Thank you

    #1442912

    Topic: Adobe Type Kit Issues

    in forum Enfold
    spokerstradingco
    Participant

    Hi, I’m following this thread on how to add an Adobe type kit to the Enfold theme. https://kriesi.at/support/topic/adding-adobe-typekit-to-my-website/

    I add the code in private to my child theme but I’m getting this error. Your PHP code changes were not applied due to an error on line 17 of file wp-content/themes/enfold-child/functions.php. Please fix and try saving again.

    syntax error, unexpected ‘Regular’’ (T_STRING), expecting ‘]’

    I’m not too sure of the font weight but this is the font im using Edpirito Regular. https://fonts.adobe.com/fonts/espiritu

    Any help would be appriectaed!

    #1442903

    You can close the topic.

    Thank you!

    Best regards, Rogier

    #1442887

    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

    #1442871

    Hi,

    This what is currently applying:

    .avia-section.av-rk2b-765175248ded7801464e4d138627e1dd .av-section-color-overlay {
      top: 170px;
    }

    Did you change the value? If so, then please try the code I sent instead.

    Best regards,
    Rikard

    #1442868

    Hi,

    Thank you, the same to you :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #1442848

    In reply to: menu items

    Hi, thank you very much.
    Only the top part of the code works, showing the current selected item as red background.
    I’d also need to change the hover color of all the elements.

    Also, how do i set different colors between desktop and mobile?
    Thanks

    #1442847

    Topic: home page config

    in forum Enfold
    seomar
    Participant

    hi!
    1- I’d like to have the meta-header top bar section of https://deperdidosalrock.com/ fully transparent, now is white.
    2- How can aI show a diferent logo version just for Mobiles?
    3- the layer slider when loaded the frontpage keeps white and empty til someone interacts wih the banner. What’s the way to show the layer slayer banner at the very start..
    4- the text from the home page main banner, is now black color, white background. I’d like just the opposite, (the problem relies on the body and P general text in black)
    Many thanks indeed!
    David

    #1442833
    tsays
    Participant

    Hi –

    I would like my author archives to look like my category pages: an H1 at the top, and the blog posts listed in a grid format. Can someone assist me with the code?

    Category Pages:
    https://avaansmedia.com/category/announcements/

    #1442831

    Hey MikeTandySwag,

    Please try this instead:

    .avia-section.av-rk2b-765175248ded7801464e4d138627e1dd .av-section-color-overlay {
      top: 410px;
    }

    Best regards,
    Rikard

    #1442815
    MikeTandySwag
    Participant

    Hi Everyone,

    I’m having an issue with a line of code.

    Essentially I’d like to have a gradient that aligns bottom, but I keep getting a bar that shows up.

    Here is the code:

    .avia-section.av-rk2b-765175248ded7801464e4d138627e1dd .av-section-color-overlay {
    top: 17%;
    }

    I put the website and a screenshot in the private section

    #1442812
    williamslyd
    Participant
    #1442808
    northorie
    Participant

    Hi,
    on mobile the special font for underlined text is not displayed correctly. It shows the correct color, but not the correct font.
    It’s the font from the original health-demo. Everything is fine on desktop.

    Can you help me?
    Link on private content.

    Thanks in advance,
    best regards

    #1442807

    In reply to: Glitch on mobile

    Thank you so much for your effort!
    I’m very thankful So glad I chose enfold out of all available themes :)

    Topic can be closed

    #1442761

    Hi,

    would it still be possible to insert the white vertical lines as in the main menu.

    To add white vertical lines or separator between the menu items, please add this css code.

    #top .av-submenu-container li a {
      border-right: 1px solid #ffffff;
    }
    
    #top .av-submenu-container li:last-child a {
      border-right: 0;
    }
    

    Best regards,
    Ismael

    #1442759

    Hey agenturwendt,

    Thank you for the inquiry.

    You can add this css code to adjust the space on both sides of the header on desktop view only.

    @media only screen and (min-width: 990px) {
    
      /* Add your Desktop Styles here */
      .responsive .header_color .header_bg {
        background-position: 150px top;
      }
    
      .responsive #top #header_main .container,
      .responsive #top #header_main .container .main_menu {
        padding-left: 20px !important;
        padding-right: 80px !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget {
        left: 80px;
      }
    }

    Best regards,
    Ismael

    #1442756

    Hi,

    You can add this css code to adjust the minimum width of the search bar on desktop view:

    @media only screen and (min-width: 990px) {
    
      /* Add your Desktop Styles here */
      .av-logo-container .inner-container .widget #searchform {
        width: 100%;
        min-width: 400px;
      }
    }

    Best regards,
    Ismael

    #1442750

    Hi,

    Can we move them all down just a little bit more?

    Are you referring to the icons inside the table cells? If so, you can add this css code:

    .av-1ifk2f-204b380a96c16ead6fc2d86981178a96 .pricing-table li .av_font_icon {
        top: 5px;
        position: relative;
    }

    Best regards,
    Ismael

    hi!
    I’d like to have the meta-header top bar section of https://deperdidosalrock.com/ fully trasnparent, now is white.
    Also the layer slider when loaded the frontpage keeps white and empty til someone interacts wih the banner. What’s the way to show the layer slayer banner at the very start..
    Many thanks indeed!
    David

    Great, now I’m happy!
    Thanks a lot for your patience :)

    Topic can be closed

Viewing 30 results - 4,951 through 4,980 (of 142,863 total)