Viewing 30 results - 2,281 through 2,310 (of 18,719 total)
  • Author
    Search Results
  • #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, 2 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

    #1333641
    klkc
    Participant

    Hi,

    I would like to change the size for the Titles and Excerpts on the portfolio grid to make them more visible compared to the size of the images..
    Is that possible ?
    Please take a look at my website on the address below

    Regards
    Kim

    #1333478

    Hey Ramon,
    Thank you for the link to your site, the closest I could come to your request is this script and css that shows the gallery image thumbnail alt tag on mouse-over:
    2021-12-19_005.jpg
    which works ok if the alt tag doesn’t contain too much text, since the image needs to be clickable to view the larger image above if there is too much text you can’t click the image.
    If you want to try this, add this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_gallery_tooltip_script() { ?>
        <script>
    (function($) {
    	setTimeout(function(){
      $("#top.single-product .flex-control-thumbs>li>img").wrap('<div class="alt-wrap"/>');
      $(".alt-wrap>img").each(function() {
        $(this).after('<span class="tooltip">' + $(this).attr('alt') + '</span>');
      });
    	},300);
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_gallery_tooltip_script');

    and this code in the General Styling ▸ Quick CSS field:

    .alt-wrap { 
      display: block;
      position: relative;
      margin: 0px;
    }
    .alt-wrap span.tooltip {
      opacity: 0;
      position: absolute;
      left: 0; right: 0; bottom: 0;
      margin: 0;
      color: #fff;
      padding: 5px;
      font-size: 10px;
      line-height: 12px;
      background-color: rgba(0,0,0,0.8);
      transition: all 300ms ease;
      transition-delay: 300ms;
    }
    .alt-wrap:hover > span.tooltip { 
      opacity: 1; 
      transition-delay: 0s;
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Hey Julio,
    It looks like the footer icons are html pasted into a text widget, is this correct?
    If so please include an admin login and we can adjust the html to use the icon in the socket.
    to increase the icons try this css:

    #footer .social_bookmarks li a {
    width: 50px!important; 
    line-height: 50px!important; 
    min-height: 50px!important; 
    font-size: 30px;
    }
    
    #footer .social_bookmarks li {
    height: 50px!important; 
    width: 50px!important; 
    }
    
    #footer .social_bookmarks {
        height: 60px!important;
    }

    As to changing the green-yellow color of the icons, what color do you want them to be?

    Best regards,
    Mike

    #1333392

    Hi,
    Thank you for the login, to correct your mobile header I had to adjust your custom css for the social_bookmarks by putting it in a media query like this:

    @media only screen and (min-width: 767px) { 
    #top #header .social_bookmarks li a {
        font-size: 25px;
    }
    #top .social_bookmarks li {
         margin: 0 5px;
    }
    }

    and I had to add your “make header larger & move over” css to another media query like this:

    @media only screen and (min-width: 1440px) { 
    	/* Make header larger & move over */
    #header_main .logo, 
    #header_main .logo a {
        overflow: visible;
    }
    #header_main .logo img {
        height: 90px;
        position: relative;
        max-height: none;
        right: -90px;
        top: 15px;
    }
    #top nav .social_bookmarks {
       float: right;
       left: auto;
       width: 10%;
    }
    }

    But I notice your desktop your header widget is overlapping your social_bookmarks because you have it set to right: 300px;, I would recommend using right: 30%; instead.

    Best regards,
    Mike

    #1333365

    Thank you, I wil keep jQuery Migrate library enabled and ignore the error.

    I also discovered that this specific error is onli in Chrome, not in Firefox.

    Just to be sure; can it be that my custom css is causing this error:

    #socket { font-size: 14px !important; }

    #footer .widget p {
    font-size:15px !important;
    }

    .container_wrap {
    clear:both;
    position:relative;
    border-top-style:solid;
    border-top-width:0px;
    }

    .avia-button.avia-size-large {
    padding:14px 28px 14px;
    font-size:17px;
    min-width:120px
    }

    /*tagcloud*/
    .tagcloud br{display:none;}
    .tagcloud a{font-size: 15px !important;padding:2px 8px;margin:0 1px 1px 0;display:block;float:left;border-style: solid;border-width: 1px;text-decoration: none;}

    .tagcloud a:hover{
    text-shadow: none;
    text-decoration: underline;
    }

    .widget_tag_cloud h3{
    border:none;
    }

    /*recentcomments, recent entries*/

    .recentcomments, .widget_recent_entries li{
    padding:10px 0;
    display:block;
    font-size: 0.92em;
    line-height: 2.6em;
    }

    .recentcomments a, .widget_recent_entries li a{
    font-style: normal;
    font-family: “Verdana”, “Times New Roman”, Helvetica, Arial, sans-serif;
    }

    .recentcomments, .widget_recent_entries li{
    border-top-width:1px;
    border-top-style: solid;
    }

    .recentcomments:first-child, .widget_recent_entries li:first-child{
    border-top:none;
    }

    .entry-content-wrapper li {margin-left: 0em;padding:3px 0;}

    Thanks,
    Alwin

    #1333339

    Hey Julio,

    Thank you for the inquiry.

    As we mentioned in the previous thread, it is possible to apply a unique ID or class name to any elements in the builder including the Text Block and the Special Heading element. Just edit the element, then go to the Advanced > Developer Settings panel to apply the class name or the ID. You can then use those attributes as css selectors to adjust the style of the element.

    Example:

    .your-custom-class { font-size: 100px; }
    

    Best regards,
    Ismael`

    #1333240

    Thanks Yigit, I also added “textarea” for the message field.

    input, select, textarea {font-size: 100%! important; }

    Good job

    • This reply was modified 4 years, 2 months ago by vbonora.
    #1333187
    web4smallbusiness
    Participant

    Good morning
    I have been using Enfold for quite a while and have built a number of websites, but I seem to be experiencing a problem with one particular website (see details below),

    Problem No 1
    ———————
    Custom CSS and Advanced Styling are being ignored.

    I changed the font on the website several times (using the available theme fonts) and each time I made the change the font showed up ok. Then suddenly none of the changes I made were being reflected.

    I checked the website on several browsers and monitors and even my mobile phone and still no change.

    I then upgraded the theme to the latest version and changes still did not show up.

    I decided to install Google Fonts and whilst this is now showing the new fonts, other formatting still did not show up. For example all H1 headings are coming up in ALL CAPS and even though I have quick CSS code within the theme:

    h1, h2, h3, h4, h5, h6{text-transform: none !important;}
    span.image-overlay {display: none !important;}
    #header .social_bookmarks li a { font-size: 30px;}

    and I have specified Text Transform “none” within Google settings, it seems to be getting ignored.

    I contacted the hosting company, thinking that maybe something is being blocked and they said:

    Enfold theme has weird caching system that sometimes takes a while to take into effect.
    To add custom CSS, it’s better to add it to Appearance > Customize > Additional CSS

    So I did that and that fixed the problem, but I have a number of websites to build and I am hoping to get to the bottom of the issue.

    Problem 2
    ——————
    I have also noticed that even though I have selected a Stretched Layout, it seems to be a lot narrower than other website with Stretched Layout. I have checked and the dimensions are the same as other websites, ie 1310px.

    Problem 3
    —————-
    I am unable to make any changes to the menu, which I tried through Advanced Styling – the client has requested a different font, but no matter what I do, the changes do not happen.

    I can’t figure out what could be causing these problems. This website is hosted with all my other client websites and none of them are experiencing these problems.

    Is there a setting I may have missed that could be preventing the updates?

    Your help would be greatly appreciated.

    #1333171
    Jules
    Participant

    On the Fullscreen Slider Element, I’m able to add text and place it within a framed border. How can I achieve this same effect with the Text Block & Special Heading Elements?

    Here is an example of what I’m trying to achieve: https://ibb.co/7pq8Dm4

    I found a previous topic from 2015, however, these options don’t appear to currently exist.

    If there is now workaround with Enfold, are there WordPress Plugins that anyone is aware of the would allow me to override the Text Font Size limitation (i.e. add font sizes greater than 40px) and add an overlay behind the text to help it standout – similar to “Fullscreen Slider Element” – – for example: Advanced Editor Tools (previously TinyMCE Advanced); plugin site says it’s: “Untested with your version of WordPress”?

    TIA for your help.

    • This topic was modified 4 years, 2 months ago by Jules.
Viewing 30 results - 2,281 through 2,310 (of 18,719 total)