Forum Replies Created

Viewing 30 posts - 991 through 1,020 (of 34,859 total)
  • Author
    Posts
  • in reply to: icons side by side and centered #1478380

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

    #top .av_font_icon a:hover {
    	color: #d5392e;
    }

    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

    in reply to: icons side by side and centered #1478361

    Hi,
    Your page shows as a 404, is there a new URL? what color on hover do you want?

    Best regards,
    Mike

    in reply to: no top padding for colum section #1478358

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Style Mobile Mega Menu #1478357

    Hi,
    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 01 at 12.34.37 PM

    Best regards,
    Mike

    in reply to: Widget link wrong hover color #1478356

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

    #top #header.header_color #header_main .widget a:hover {
    	background: #fff;
    	color: var(--enfold-main-color-secondary);
    }

    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

    in reply to: desktop view – widget and menu alignment #1478355

    Hey ausgesonnen,
    Sorry I’ don’t understand, perhaps a screenshot would help.
    Perhaps this is a duplicate of your other post?

    Best regards,
    Mike

    in reply to: desktop view, Menu and burger to align with content #1478354

    Hey ausgesonnen,
    Sorry I’ don’t understand, perhaps a screenshot would help.
    Perhaps this is a duplicate of your other post?

    Best regards,
    Mike

    in reply to: Items in burger menu to align to the top #1478353

    Hey ausgesonnen,
    The title of your thread says “burger menu” but the content says “desktop view”
    for the desktop, items are at the top:
    Screen Shot 2025 03 01 at 12.06.35 PM
    for burger try this css:

    #top #av-burger-menu-ul {
        vertical-align: top;
        padding: 0 !important;
    }

    Screen Shot 2025 03 01 at 12.11.13 PM

    Best regards,
    Mike

    in reply to: Link #1478348

    Hi,
    Screen Shot 2025 03 01 at 12.01.54 PM

    Best regards,
    Mike

    in reply to: Link #1478347

    Hi,
    When you add the link in the text element, click on the “gear” and then check the “open in a new tab”
    Screen Shot 2025 03 01 at 11.58.36 AM

    Best regards,
    Mike

    in reply to: Disable Cookie Consent Messages doesn’t stick #1478343

    Hi,
    First note that the site that you linked to and the login in your first post is two different domains.
    Your login domain is off line. Then your site domain doesn’t have the cookies disabled:
    Screen Shot 2025 03 01 at 11.47.59 AM
    so if you want to disable, please change this setting.

    Best regards,
    Mike

    in reply to: Fixing alignment of buttons #1478338

    Hi,
    Please review the options in the advanced styling tab, each option has an explanation:
    Screen Shot 2025 03 01 at 11.32.30 AM
    I don’t understand what you don’t understand, perhaps the best solution is to open a new thread when you want to change these and then we can assist, but since you don’t want to change this now it is hard to explain.

    Best regards,
    Mike

    in reply to: Background color on hover of second submenu #1478325

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

    #header.header_color #header_meta .sub_menu li ul a:hover {
    	background-color: red;
    }
    #top #header.header_color #header_meta .sub_menu li ul {
        left: 8%;
    }
    #header.header_color #header_meta .sub_menu li ul a,
    #header.header_color #header_meta .sub_menu li a {
    	font-size: 14px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    adjust the color, font-size and placement (left) to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey profumopuntoit,
    Unfortunately, we are limited to supporting paid plugins, but it looks like you asked this same question on April 19, 2024 > https://kriesi.at/support/topic/ajax-reload-on-payment-method-change-in-checkout-page/
    Did you try this?

    Best regards,
    Mike

    in reply to: Dimension of thumbnails in grid of category archive #1478317

    Hey Vera,
    I added this to your child theme functions.php:

    function override_post_thumbnail_size($size, $post_id) {
        if (is_archive()) {
            return 'full';
        }
        return $size;
    }
    add_filter('post_thumbnail_size', 'override_post_thumbnail_size', 10, 2);

    It is working, but you will need to adjust one of your images as it’s full size is smaller than the others (Blinder Port)

    Best regards,
    Mike

    in reply to: Change the Blog List Layout icon #1478316

    Hey Tanja,
    Please ensure that you are using Enfold v7.0, then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
    function avia_replace_standard_icon($icons)
    {
    $icons['svg__standard']	 = array( 'font' =>'svg_entypo-fontello', 'icon' => 'leaf');
    return $icons;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 03 01 at 7.23.39 AM

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Move title from header to main content #1478313

    Hey sudhafen,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
      (function($){
       $('.page .main-title.entry-title ').detach().insertBefore('.template-page.content .post-entry');
      })(jQuery);
      </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 03 01 at 6.55.25 AM

    Best regards,
    Mike

    in reply to: Fixing alignment of buttons #1478309

    Hi,
    the submenu items background color is the same:
    Screen Shot 2025 02 25 at 4.35.28 PM
    the other items are also in the Advanced Styling options.

    Best regards,
    Mike

    in reply to: Bug – Abuse of /?avia_extended_shop_select= queries #1478308

    Hi,
    Thank you for your patience, the Dev Team writes:
    On shop overview page the dropdowns for sort by and display do not have a href=” but only a data-href and link is done by js.
    When I check my install there is no link:
    Screen Shot 2025 03 01 at 6.09.07 AM

    Best regards,
    Mike

    in reply to: Text element in portfolio shows blank content #1478049

    Hey woogie07,
    From your screenshot it looks like the text maybe white, as the red lines, try clicking the “text” tab and see if the text shows:
    Screenshot 2025 02 26 at 16.21.39
    also note that in the preview you have an HTML error, if you added HTML to make the text white you may have a unclosed HTML tag.
    Another possibly is that you copied the text from another page, and when you pasted it the HTML was also added, with a unclosed HTML tag.
    Try clicking the “text” tab and remove all of the HTML tags and see if that helps.

    Best regards,
    Mike

    in reply to: Mobile version Tablet landcape not working well #1478048

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Mobile version Tablet landcape not working well #1478041

    Hi,
    Try this css:

    @media only screen and (min-width: 990px) and (max-width: 1366px) {
    	#top.page-id-548 #kontakt .avia-builder-el-191 {
            transform: translateX(-200px) !important;
    }
    }

    Best regards,
    Mike

    in reply to: Mobile menu item colors #1478037

    Hi,
    The login is not working, please check.

    Best regards,
    Mike

    in reply to: Fixing alignment of buttons #1478035

    Hi,
    if you want to change it, change here:
    Screen Shot 2025 02 25 at 4.35.28 PM
    this changed because all the colors above were wrong, as I noted with screenshots, not from the update.
    Shall we close this thread then?

    Best regards,
    Mike

    in reply to: Add Amazon style search bar in top menu #1477959

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Fixing alignment of buttons #1477958

    Hi,

    I want white text on a purple background – I want the sub menu items to be white against a purple background

    done:
    Screen Shot 2025 02 25 at 4.35.28 PM
    Screen Shot 2025 02 25 at 4.54.31 PM
    Screen Shot 2025 02 25 at 4.56.12 PM
    clear your browser cache and check

    Best regards,
    Mike

    in reply to: Add Amazon style search bar in top menu #1477952

    Hi,
    the search icon in the header looks fine, to move down the search icon in the sidebar try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .sidebar .av_searchform_search.avia-svg-icon {
    	top: 31px !important;
    }

    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.
    Screen Shot 2025 02 25 at 4.18.15 PM

    Best regards,
    Mike

    in reply to: Server errors after recent update? #1477951

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Sub menu width with description #1477927

    Hi,
    I don’t see a link to your site.

    Best regards,
    Mike

Viewing 30 posts - 991 through 1,020 (of 34,859 total)