Viewing 30 results - 2,281 through 2,310 (of 18,728 total)
  • Author
    Search Results
  • #1334958

    Topic: Page search on tags

    in forum Enfold
    2funky
    Participant

    Hi,

    I want to create a single search page on woocommerce tags – the result page should show the products items as I have made it from the standard search in the header.

    The search was created via the code below:

    [avia_sc_search placeholder='Drue...' label_text='Find' icon_display='' icon='ue800' font='entypo-fontello' post_types='custom' post_types_custom='product' numberposts='40' display='ajax' ajax_location='form_absolute' ajax_container='#my_container' custom_input_size='' custom_button_size='' custom_height='' radius='' radius_sync='true' border_width='' border_color='' custom_border_color='' input_color='' custom_input_color='' input_bg='' custom_input_bg='' button_color='' custom_button_color='' button_bg='' custom_button_bg='' results_padding='' results_padding_sync='true' results_margin='' results_margin_sync='true' results_color='' custom_results_color='' custom_results_content='' custom_results_icon='' results_bg='' custom_results_bg='' id='' custom_class='' template_class='' av_uid='av-ky8o7bzm' sc_version='1.0' admin_preview_bg='']

    See demo page under private content

    Hope you can help

    Best Regards, Pete

    • This topic was modified 4 years, 2 months ago by 2funky.
    #1334918

    Hi,

    Thank you for the info.

    If I have the Enfold cache options

    The theme doesn’t have a cache option, only compression and merge options. Please note that there is no “one size fits all” or “one config fits all” when it comes to site optimization, so you have to play around with these options and try a few combination of plugins to find out which works best for your installation. If the current combination of options and plugins are not working, then you have to adjust it until you get a better result.

    the Google bot cannot load all resources anymore

    Which resources exactly (js, css, images, fonts) ?

    Best regards,
    Ismael

    #1334859

    In reply to: Header Text Widget

    Hi,
    I had to guess which foolscap image you wanted to use, so to change this icon to an image:
    2022-01-09_001.jpg
    I added this css:

    .hr-center.hr-icon-yes .av-seperator-icon:after {
      content: "";
      background-image:url(https://new.faschingsklub-thalheim.de/wp-content/uploads/2022/01/Kappe_100.png);
      background-size: 100% 100%;
      display: inline-block;
      height: 30px;
      width:30px;
    }
    .hr-center.hr-icon-yes .av-seperator-icon {
    	font-size: 0px;
    	width: 30px;
        height: 30px;
    }

    and the results are:
    2022-01-09_002.jpg
    If you want to use a different image, simply change the url in the css.
    I made this change for you, please clear your browser cache and check.

    Best regards,
    Mike

    #1334739

    Hi,
    From what I see the font rule:

    h1, h2, h3 {
    	font-family: 'Bilbo Swash Caps', cursive;
    	text-transform: capitalize !important;
    	color: #ad0300 !important;
    }
    

    is applied in your child theme stylesheet, but using just the H tag by itself to affect the H1 in the layerslider is a little weak as the layerslider is passing the “inherit” rule to the tag.
    to correct I would recommend changing to:

    #top #main h1,#top #main h2,#top #main h3 {
    	font-family: 'Bilbo Swash Caps', cursive;
    	text-transform: capitalize !important;
    	color: #ad0300 !important;
    }

    As for the font size of the lower text being 1px, this is what the layerslider is setting so you will need to make that change in the layerslider:
    2022-01-07_004.jpg

    Best regards,
    Mike

    #1334716

    Thank you, Mike.

    Are you, and other support people, of the mind that it is not worth pursuing why the font sizes and family changed without any Admin interaction?

    ~ Greg

    #1334689

    In reply to: Header Text Widget

    Hi,

    To increase font size of the widget title, please use

    #header .widgettitle {
      font-size: 26px; 
    }

    and to increase font size of the widget text, please use

    #header .textwidget {
      font-size: 20px; 
    }

    Best regards,
    Yigit

    #1334681

    Hi,

    Thanks for contacting us!

    You can go to Enfold theme options > Advanced Styling and edit “H3” tagged elements. If you are going to need to separately edit post titles, you can edit your element, go to Advanced > Developer Settings tab and give your element a custom ID (“my-custom-id” in example below) and then add following code to bottom of Enfold theme options > General Styling > Quick CSS field

    #my-custom-id h3 { color: orange; font-size: 24px; }

    Best regards,
    Yigit

    #1334670

    Hi,
    Thank for the login, when I check your slider the font size is 1px, try changing it to 14px, for example:
    2022-01-07_061601.jpg

    Best regards,
    Mike

    #1334626

    In reply to: logo as text

    Hi,

    Thank you for the update.

    Did you add this css code?

    .button {
        background-color: #66bde6 !important;
        -webkit-border-radius: 33px;
        -moz-border-radius: 3px;
        color: #ffffff;
        font-size: smaller;
        padding: 5px 15px;
    }
    

    This rule overrides the default background color of the submit button. If you want to override it, place this css code below.

    input[type="submit"], #submit {
        background: red !important;
        color: white !important;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adjusting the css.

    Best regards,
    Ismael

    #1334599
    blaircomm1
    Participant

    With the last update in Enfold, 4.8.8.1, all the code for social icons in the burger menu no longer works. I found these new items which make it show, but it is non functional and partially hidden: https://kriesi.at/support/topic/adding-social-icons-to-enfold-burger-menu/

    I added both the new php and the css.

    I cannot get my old CSS to work no matter what I do. The icons sort of show up, but are cut off and I cannot style them with CSS — plus the Linkedin icon does not show.

    Can you help me get this working again?

    Here is what worked before, both the php and the css:

    ORIGINAL FUNCTIONS.PHP _______________________________________________

    function custom_burger_social_bookmarks_script() { ?>
    <script>
    (function($){
    $(‘#avia-menu’).one(‘click’, function(){
    jQuery(‘ul.social_bookmarks’).clone().wrapInner(‘<div class=”burger_social_bookmarks”/>’).children(0).unwrap().appendTo(‘#av-burger-menu-ul’);
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘custom_burger_social_bookmarks_script’);

    ORIGINAL CSS ___________________________________________________________

    /*—-BURGER MENU—-*/

    /* Responsive flyout width */

    @media only screen and (max-width:767px) {
    .html_av-overlay-side .av-burger-overlay-scroll {
    width: 82% !important;
    }
    }

    /* Social bookmarks */

    #av-burger-menu-ul > .burger_social_bookmarks li a {

    }

    /* Menu overlay */

    #top #header .av-burger-overlay-bg {
    background: #ffffff;
    }
    #top #header .av-burger-overlay-bg {
    opacity: .2;
    }

    /* END Menu overlay */

    /* Menu items background color */

    .html_av-overlay-side #top .av-burger-overlay-scroll {
    background: #f838fa;
    }

    /* END Menu items background color */

    /* Menu items background font size */

    #top #wrap_all #av-burger-menu-ul li {
    font-size: 30px;
    }

    /*END Menu items background font size */

    /* Burger Menu size */

    .av-hamburger-inner, .av-hamburger-inner::before, .av-hamburger-inner::after {
    width: 40px !important;
    height: 4px !important;
    }

    /* END Burger Menu size */

    /* Burger menu links */

    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul li a {
    color:#ffffff;
    }

    /* Overlay menu links */

    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul li a:hover {
    color:#444444;
    }

    /* Active menu links */

    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul li.current-menu-item a {
    color:#444444;;
    }

    /* Burger menu icon color on transparent header */

    #header.av_header_transparency .av-burger-menu-main a .av-hamburger-inner,
    #header.av_header_transparency .av-burger-menu-main a .av-hamburger-inner:before,
    #header.av_header_transparency .av-burger-menu-main a .av-hamburger-inner:after {
    background-color: #444444;
    }

    /* END Burger menu icon color on transparent header */

    /*—-END BURGER MENU—-*/

    #1334581
    rixi
    Participant

    Hello,
    i would like to change the font style and size in a formular that i made. Can you tell me how i can do that?
    That yould be great :)

    Many greetings rixi

    #1334580

    Dear Support,

    Is it possible, that the “remove query-strings” option not work anymore? I see so many query strings.
    Some servers have difficulties with it to cache it. They cache only raw css and js, without

    @Alwin:
    – The big question is: Do you have Apache or nginx and do you have a hosting with many others (cheap and lame) or a vserver or something else?
    – I would recommend testing page speed at gtmetrix with a server in your country. It makes no sense, to scan with a server in Sand Francisco, if your main traffic come from France (a big latency)

    The big issue for me with enfold is the DOM-Size.
    I have played a while with all options.
    I have used all options active in enfold for merge and caching (it reduces time of loading to 1.4 seconds (from 2,6 s) and the LCP and CLS are strong) wit A-rating over 90 % (with many images). Clear cache and reload the page, before you test.
    Fonts: Use Swap!

    In WP-Rocket:
    Minify + Combine CSS + optimize CSS delivery
    For JS:
    Minify and load asynchronous
    Not combine (some elements are not loaded correct)

    But: For load asynchronous, I must exclude some:

    /jquery-?[0-9.]*(.min|.slim|.slim.min)?.js
    /wp-content/themes/enfold/js/avia-compat.js
    /wp-includes/js/jquery/jquery-migrate.min.js

    and excluded for minification (possible, not all are needed)

    /wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js
    /wp-content/themes/enfold/js/avia.js
    /wp-content/themes/enfold/js/shortcodes.js
    /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/
    /wp-content/themes/enfold/js/avia-compat.js
    /wp-includes/js/jquery/jquery.min.js
    /wp-includes/js/jquery/jquery-migrate.min.js

    + Preloading

    also: All fonts preload (you will see it in the dev console)

    best

    S.

    #1334403

    Hi,

    Have you found a solution for point 2 as well? Font size is 12px and it looks fine on my end, I attached a screenshot in private content field.

    If you would like to decrease the size even more, please add following code to bottom of Quick CSS field in Enfold theme options > General Styling tab

    #top #full_slider_2 .avia-slideshow-button {
      font-size: 10px !important;
    }

    Best regards,
    Yigit

    #1334390

    Found a solution for point 1. I could just insert html code in this field. Great.

    Now only point 2, making the butoon smaller incl. the font-size.

    Thanks!

    #1334366

    Hey,

    Thanks for contacting us!

    1- Please edit your Color Section element that contains your 3 blocks and go to Advanced > Developer Settings and give it a custom ID (“my-custom-id” in example below) and then add following code to bottom of Quick CSS field in Enfold theme options > General Styling

    @media only screen and (max-width: 990px) { 
    #top #my-custom-id .flex_column_table {
      margin-top: 0;
    }}

    2- You can duplicate your Slider element, choose to display different slide image in your duplicated slider and then edit your element and go to Advanced > Responsive and choose to hide duplicated slider on desktop and choose to hide your existing slider on mobile.

    3- You can edit your slide and go to Styling > Font Sizes and choose different font sizes for different screen sizes – https://imgur.com/a/XbHsUlM :)

    Best regards,
    Yigit

    #1334362

    Hi,

    Thanks for the update. Are you trying to target the home class on your home page in the code you posted? If so, then please try this instead:

    @media only screen and (min-width: 990px) and (max-width: 1440px) { 
    .home .maintitle {
    font-size: 1.2em;
    line-height: 1em;
    padding: 0px 1em;
    }
    }

    The # character is used for ID’s only. Also, you might need to be a bit more specific in your CSS, as I see that you have different markup in the element which you applied the class to.

    To target the h1 element, you might need something like this:

    @media only screen and (min-width: 990px) and (max-width: 1440px) { 
    .home .maintitle h1 span {
    font-size: 1.2em;
    line-height: 1em;
    padding: 0px 1em;
    }
    }

    Best regards,
    Rikard

    #1334335
    This reply has been marked as private.
    #1334320

    In reply to: Center subtitle

    Hey aluca6,

    Thank you for the inquiry.

    The title and the breadcrumb are not aligning correctly on mobile view because of this css code.

    .main-title.entry-title, #top .alternate_color.title_container .main-title a {
        left: 44% !important;
        margin-bottom: 60px !important;
        font-weight: 600 !important;
        font-size: 28px !important;
        color: #660000 !important;
    }
    
    .main-title.entry-title, #top .alternate_color.title_container .main-title a {
        left: 44% !important;
        margin-bottom: 60px !important;
        font-weight: 600 !important;
        font-size: 28px !important;
        color: #660000 !important;
    }
    
    .title_container .breadcrumb {
        left: 44% !important;
        padding: 0;
        background-color: #fff !important;
        font-family: 'Lato';
        font-style: italic;
    }
    

    The left property adjusts the position of the title. You may need to wrap the code inside a css media query so it doesn’t affect the mobile view.

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    }

    Best regards,
    Ismael

    Hi Gunter,

    Thanks for getting back to me.

    I’ll save this for a rainy day. If I have any success I’ll report back. Going to be a while before I can pick it all apart!

    I’ll raise this as an issue after I have done some more testing. No action required at the moment
    The LCP seems to be heavily affected by custom fonts. I need to investigate further before I raise this as an issue. Even with SWAP enabled on fonts, the First element on the page is not fully loading until the fonts have downloaded (looking at the waterfall). I had a site recently where I accidently uploaded a font that after compression was still 500kb WOFF2. The LCP was extremely high. I used Font Forge to bring the size down to about 40kb and the LCP score started passing. Wev vitals is therefore waiting for the font to download and processed before LCP is calculated.

    I was then thinking. Is there an event listener in the JS files delaying things like “DOMContentLoaded” Specifically related to the fade in on the first element or slider titles and captions.

    I’ll have a look when I get the chance. I think it might just be the way Chrome handles Preload of Fonts rather than anything else.

    #1334151

    In reply to: Footer issues

    Hey Chiefi,

    Thank you for the inquiry.

    Instead of applying the background to the color section, try to add a 1/1 column element inside the section and apply the background to it. You can adjust the font size and other element styling in the Enfold > General Styling panel or edit the element and go to the Styling tab.

    Best regards,
    Ismael

    #1333910

    Hi,

    Please try this CSS as well:

    .sidebar .product_list_widget span.product-title {
      font-size: 18px !important;
    }

    Best regards,
    Rikard

    #1333904

    Hi,
    Thanks for the login, I added this css:

    li.ife span.avia-menu-text:before {
      content: "\e84f";
      font-family: 'entypo-fontello';    
      font-size:20px;
      padding-right:10px;
      }

    and a custom class to your menu item:
    2021-12-23_008.jpg
    and now the book icon shows:
    2021-12-23_009.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    #1333808

    Hi,

    Please try this CSS instead:

    .sidebar .product_list_widget li {
      font-size: 18px;
    }

    Best regards,
    Rikard

    #1333755

    Hi Rikard. I added the css to the Enfold Child Css

    / * Rikard * /
    .template-shop .product_meta {
    font-size: 18px;
    }

    but it does not change the size of the fonts for categories and woocommerce product summary tags

    https://trikego.com/it/negozio/

    https://ibb.co/nRLZd3s

    • This reply was modified 4 years, 3 months ago by Bruno.
    #1333742

    In reply to: logo as text

    Hi Franz,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top .logo .subtext {
      color: white;
      font-size: 20px;
    }
    

    If you would like to make further changes, please post a screenshot and show them. You can upload your screenshots on imgur.com and post the links here :)

    Regards,
    Yigit

    #1333713

    Hi,

    This URL is returning a 404 error on my end: https://trikego.com/it/store/, please check it and post a new URL.

    Please try this CSS for the categories:

    .template-shop .product_meta {
        font-size: 18px;
    }

    Best regards,
    Rikard

    #1333701

    Hey klkc,

    Thank you for the inquiry.

    You can use this css code to adjust the font size of the portfolio title and content.

    .grid-entry-title {
        font-size: 21px;
    }
    
    .grid-entry-excerpt {
        font-size: 16px;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    #1333695

    same problem with categories and tags

    https://ibb.co/GW6t4Bh

    https://trikego.com/it/prodotto/capottina/

    i can’t find css to resize fonts

    #1333676
    Bruno
    Participant

    Hi. What css should I use to increase the size of all fonts used in woocommerce widgets or should I do it for each type of widget?

    I try to explain myself better: in the single product page, with css I managed to increase the font size of the “PRODUCT CATEGORY” widget from 12 to 18px

    https://trikego.com/it/prodotto/trikego-solo-telaio/

    https://ibb.co/d7dVhs5

    /***/
    .widget_product_categories li a {
    font-size: 18px;
    font-style: normal;
    }
    /***/

    but I can’t figure out how to change the size of the widget fonts in the product summary page to 18px

    https://trikego.com/it/store/

    https://ibb.co/Z6XLmhg

    Is there a method to standardize with a single css class all the widget fonr that I will use in the sidebar of the wocommerce pages (summary and single product)?

    Or do I have to make specific classes for each widget? In this case, would you please tell me how to increase the widget fonts in the store product summary to 18px?

    https://trikego.com/it/store/

    https://ibb.co/Z6XLmhg

    As always thanks for your support. Kind regards. Bruno

    #1333642

    Hey ladefogedpeter,
    Thank you for the screenshots and link to your site, please try this css in your Quick CSS:

    @media only screen and (min-width: 990px) and (max-width: 1440px) { 
    #top.home #overlap .avia-image-container .av-image-caption-overlay-center {
    	font-size: 1.4em;
    	line-height: 1em;
    	padding: 0px 1em;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 results - 2,281 through 2,310 (of 18,728 total)