Viewing 30 results - 1,171 through 1,200 (of 18,717 total)
  • Author
    Search Results
  • spitsdesign
    Participant

    I’m having problems with full screen slider caption font sizes. I changed it, but not effect.
    Also the icons I’m using are showing up wrong. Should be 80 px high.

    Maybe it’s got something to do with PHPversion? It is set to PHP 8.1.
    Please can you check what is going wrong?
    Thank you

    #1415229
    sofiadadci
    Participant

    Hello,

    My website looks very awful on mobile. The homepage for example (link in private content) has big white spaces, font is big, logo slider and other images are not displaying, the bar of the menu is overlapping the logo which also too big. Nearly all of the pages of my website are not responsive for mobile. (I tried on different mobile size and brand : samsung, Iphone etc still the same)

    Same for my landing page : there is a big blank space, some elements are too close, some are to far away, titles are too big…There is a Google Ads campaign running at the moment. People will not click on a page like this.

    Enfold is supposed to be mobile responsive. Maybe I am missing something ?

    Thank you for your help.

    Regards,

    • This topic was modified 2 years, 6 months ago by sofiadadci.
    • This topic was modified 2 years, 6 months ago by sofiadadci.
    #1415215

    Hey Emanon,
    Thanks for the link to your site I’m not sure why your arrow font would change but it is now:
    content: “\E803”;
    font-family: ‘fontello’;

    and the font-family: ‘friendly’; is a globe
    Enfold_Support_2782.jpeg
    so I fixed your css for you so on your blog your arrows show:
    Enfold_Support_2784.jpeg
    but on your homepage you have added html to your special heading title field, which is not recommend:
    Enfold_Support_2780.jpeg
    but since you already have this in place I added this css to override them and add the arrow:

    .red-arrow-title .av-icon-char:after {
      color: #EB5847;
     content: "\E803";
    font-family: 'fontello';
      font-size: 16px;
      position: absolute;
      margin-left: 5px;
    }
    .red-arrow-title .av-icon-char:before {
      display: none;
    }

    now now they show the arrows:
    Enfold_Support_2786.jpeg
    please clear your browser cache and check.

    Best regards,
    Mike

    #1415151
    Emanon
    Participant

    Hi guys,

    I used to have red arrows on my homepage and in the Socket (Enfold Footer Menu). Yigit helped me with that a long time ago. Somehow, someway, I managed to remove the arrows. I was trying to add some new icons when they suddenly disappeared. I guess I deleted the arrows. I tried to upload new once. No result. Can you guys help me out?

    This is how it looks now:
    https://emanon.nl/wp-content/uploads/2023/08/1.png
    https://emanon.nl/wp-content/uploads/2023/08/2.png
    https://emanon.nl/wp-content/uploads/2023/08/3.png
    https://emanon.nl/wp-content/uploads/2023/08/4.png

    This is how it look liked:
    https://emanon.nl/wp-content/uploads/2023/08/Screenshot-2023-08-01-at-14.47.46.png

    I used an arrow of Fontello. Not exactly the same, but it was almost like it.

    The custom code of Yigit is in the custom css field.

    .more-link-arrow::after {
    content: “\E802”;
    color: #EB5847;
    font-size: 16px;
    font-family: ‘friendly’;
    }

    #avia3-menu a::after {
    content: “\E802”;
    color: #EB5847;
    font-size: 16px;
    font-family: ‘friendly’;
    position: absolute;
    margin-left: 5px;
    }

    However, I don’t know if this is all of it.

    Thanks in advance.

    • This topic was modified 2 years, 6 months ago by Emanon.
    • This topic was modified 2 years, 6 months ago by Emanon.

    use your footer menu for that. If you do not like to show that menu – set it to display: none. via quick css.
    it goes without saying that the hamburger menu must be set to full page overlay!

    this snippet goes to child-theme functions.php:

    function footer_menu_to_hamburger_menu(){
    ?>
    <script>
    (function($){
      $('#header').one('click', '.av-main-nav-wrap', function() {
        var isMobile          = $('.av-burger-overlay').css('display'),
            footerMenu        = $('#avia3-menu'),
            mobileMenu        = $('#av-burger-menu-ul'),
            footerMenuClone   = $('#avia3-menu').clone(true).addClass('second-burger-menu').css('display', 'block');
    
        if( footerMenu.length ){
          (footerMenuClone).insertAfter(mobileMenu);
        }
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'footer_menu_to_hamburger_menu');

    this to your quick css:

    #socket .sub_menu_socket {
      display: none
    }
    
    #top .av-burger-overlay-inner {
    	display: inline-table;
    	top: 0 !important;
    }
    
    .html_burger_menu_active #header .avia-menu .av-burger-overlay .menu-item {
      display: block !important;
    }
    
    #top .av-burger-overlay #av-burger-menu-ul {
      display: table-cell;
      vertical-align: middle !important;
      width: 50vw;
      padding: 0px 5vw !important;
      text-align: right !important;
      text-transform: uppercase;
      border-right: 1px dashed #999;  /**** a separator if you like ***/
    }
    
    #top .av-burger-overlay .second-burger-menu {
      display: table-cell !important;
      width: 50% !important;
      height: 100%;
      left: 50vw !important;
      padding: 0px 5vw;
      vertical-align: middle !important;
      text-align: left;
      text-transform: uppercase;
      z-index: 115;
    }
    
    .html_burger_menu_active #header .avia-menu .av-burger-overlay .second-burger-menu .menu-item {
      font-size: 24px;
      line-height: 2.7em;
      padding: 0.3em 0;
    }
    
    .html_burger_menu_active #header .avia-menu .av-burger-overlay .menu-item a {
      color: #FFF !important;
    }
    
    .html_burger_menu_active #header .avia-menu .av-burger-overlay .menu-item a:hover {
       opacity: 0.7;
    }
    
    .html_burger_menu_active #header .avia-menu .av-burger-overlay-inner .avia-menu-fx {
      display: none;
    }
    
    #top .av-burger-overlay-bg {
      background-image: url(/wp-content/uploads/background.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 1;
      filter: brightness(0.1);
    }
    

    see: https://webers-web.info/

    PS: the behavior of shifting the content left side was the setting before testing your requested hamburger option – it is part of non-fullpage overlay that hamburger pushes the content side

    #1414883

    Oops — thanks, guys! I couldn’t even see them on my phone, but once I saw the screenshot from Guenni, I found them on my emulator, in tablet view.

    And yeah, I think you’re right, Guenni, about wrapping them in an li. And I’d like to keep them in the top strip, on desktop — so, thanks, Mike, I don’t think I want them in the main header area on this site, but I’ll keep your solution in mind if I do!

    So I went with Guenni’s code using the socket socials, but they were still showing at the left edge of my mobile overlay menu. I was able to center them by changing isHeading=”Social Bookmarks” in the php to isHeading=”” (deleting that whole line seemed to vanish the icons), and setting the css to width=”fit-content”; margin: auto; — so here’s my code, if it helps anyone else.

    Thanks again, guys!!!

    <?php
    function social_footer_icons_to_hamburger_menu(){
    ?>
    <script>
    (function($){
    
      $('#header').one('click', '.av-main-nav-wrap', function() {
        var isMobile  = $('.av-burger-menu-main').css('display'),
          isHeading = "",
          social    = $('#socket .social_bookmarks').clone(true).addClass('sub-menu').css('display','block'),
          mobileMenu  = $('.av-burger-overlay');
    
        mobileMenu.find('#av-burger-menu-ul').append('<li class="menu-item-social av-active-burger-items" role="menuitem"><span class="avia-menu-text">'+isHeading+'</span></li>');
    
        if( social.length ){
          mobileMenu.find('.menu-item-social').append(social);
        }
      });
    
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'social_footer_icons_to_hamburger_menu');

    And then this css seems to work for me:

    .html_av-overlay-full #av-burger-menu-ul li.menu-item-social {
        width: fit-content;
        margin: 30px auto;
    }
    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li.menu-item-social li {
        font-size: 1em;
    	margin: 5px;
    }
    #1414809

    Topic: About social icon

    in forum Enfold
    tulin88
    Participant

    Hello,
    You have sent me these codes for social media icons before. I want social media icons to always stay in their original color. Can you fix it in codes.

    #top .social_bookmarks li {
    width: 35px;
    }

    #top .social_bookmarks li a {
    width:35x;
    line-height: 35px;
    min-height: 35px;
    font-size: 20px;
    }

    #top .header_color .social_bookmarks a {
    color: DarkBlue;

    }

    #1414800

    Topic: About menu font

    in forum Enfold
    tulin88
    Participant

    I’m looking for help for the menu font problem.
    Could you please take a look at the screenshot, I sent you the link.
    http://uhdgm.com//wp-content/plugins/help.jpg
    I can control the main menu fonts.
    But I want to change the color and size of the font (the main submenu fonts)
    Thanks

    #1414684

    Hi Daniela,

    1. Your code is correct but it’s not being fetched in the frontend, please go to Enfold > Performance, then disable CSS file merging and compression and Javascript file merging and compression.

    2. Please try to add this CSS code:

    #top #header_main #menu-item-shop .cart_dropdown_link {
        font-size: 25px;
    }

    Default Size is 15px.
    Hope this helps.

    Best regards,
    Nikko

    #1414676
    karinkropik
    Participant

    Hello,

    I need help with the following issues:

    1) I want to remove the circle from the active tab in the main menu header and instead show a different colour on hover and when it is clicked (the same as it is used/shown in the mobile view, a lighter orange colour than the default colour)
    2) I want to reduce the size of the mega menu (“Triest” and “Crete” under Hiking retreats and trips; and also the font size – I found some older codes for quick CSS but they do not work anymore since I have the latest version of Enfold installed)
    3) On the first page with the transparent header, I want to show the mega menu title fonts also in white (without the red background)
    4) With which code can I keep the different font colours/font styles in my headers? The layout partly broke since I have installed the latest Version of Enfold; example: like in hiking retreas & trips; & trips is in orange colour (this styling was used on most of my pages, but when I now go into the pages it shows the red warnings that layout will break with the old codes – in some pages I just took another heading to be able to show it but now it is only orange and not in two colours/font styles; like the heading currently in hiking-retreats-trips/crete/: I would like Crete Hiking Retreat in brown and the date in orange colour)

    Thanks!

    #1414667
    Daniela
    Participant

    Hi there,

    I have two problems on my site:
    1. I want to increase the font size of the phone info in top bar, but no code seems to work. I tried

    #top #header_meta * {
        font-size: 50px;
    }

    and

    .phone-info {
        font-size: 18px;
    }

    but nothing changes.

    2. I want the size of the shopping cart icon of woocommerce to be increased in the main menu. I could not finde any css for this.

    Any help will be appreciated.
    Regards
    Daniela

    #1414619

    In reply to: Google Fonts Display

    Hi Diana,

    Please try to go to Enfold > General Styling > Typography, then enable the Heading Size (h1, h2, etc) then set the Font Weight.
    Hope it helps.

    Best regards,
    Nikko

    #1414560
    #1414452

    Hi Monikafrick,

    Unfortunately, that doesn’t quite fit mobile yet. The “screen_2x24.jpg” image is cropped.
    Please add an image element inside grid and use the same image as the background image of the cell, and show it only on mobile (Advanced > Responsive > Element Visibility)

    After “development processes” is a very large distance.
    You have a very large cell padding, you’ll need to adjust it on mobile.
    Edit the Cell, go to Styling > Padding > Cell Padding, click on the mobile icon and adjust the padding values.

    “Human energetics” is cut off the “r” on my smartphone.
    Can you provide a screenshot?
    Also, please try to adjust the cell paddings for mobile and font sizes.

    After “energies” there is also a very large gap.
    Please add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
        #recent > .flex_cell {
            height: auto;
        }
    }

    Best regards,
    Nikko

    #1414373

    ok – your mentioned code – your font is called fontello or do you use the existing : entypo-fontello font.
    then your code is wrong with the name of the font

    next : on docu there is an example code – using images instead of font icons . You will have the opportunity to have better social icon instead f.e:
    from : https://iconduck.com/icons/185336/teams
    ( here with 40px icon – but adapt it to your needs )

    #top .social_bookmarks li,
    #top .social_bookmarks li a {
      width: 40px;
      height: 40px;
    }
    
    #top #wrap_all .av-social-link-teams a:before{
        content: "";
        width: 40px;
        height: 40px;
        display: inline-block;
        vertical-align: middle;
        background: url(/wp-content/uploads/teams.png) no-repeat center center;
        background-size: contain;
    }
    

    the link you can set in options on enfold
    see: https://enfold.webers-webdesign.de/#footer

    Dear Mike,

    thanks for your reaction. Indeed, I now used the Typography panel to set the fontsize for different screen sizes, so the issue cannot be reproduced right now. However, it is good to know that the setting Enfold Theme Options ▸ Advanced Styling ▸ P should apply to all screen sizes. That was not what I found (see above), but perhaps another issue was playing a part. Yes, let’s close this thread, since my initial issue could be solved.

    Thanks a lot!

    This reply has been marked as private.
    #1414081

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

    .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet {
    	height: 0px;
    	width: 0px;
    	opacity: 1;
    }
    
    .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet:before {
      content:'•';
      padding-right: 5px;
      color:#000 !important;
      font-size: 20px;
      top: -8px;
      position: relative;
    }
    

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

    Best regards,
    Mike

    #1414065

    Hi,
    Thank you for your patience and the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 450px) { 
    	.phone-info {
    		font-size: 9px;
    	}
    }

    Feel free to adjust to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1413922

    In reply to: Skip link

    Hi,

    Thank you for the info.

    Try to set the initial height of the link to zero, then set it back to default on focus.

    .jsf-skip-link {
        opacity: 0;
        font-size: 0;
        height: 0;
    }
    
    .jsf-skip-link:focus {
        opacity: 1;
        font-size: inherit;
        height: 20px;
    }

    If that didn’t work, try to pull the body element 20px upwards initially then bring it back to default when the skip link has been focused.

    .jsf-skip-link + body {
        margin-top: -20px;
    }
    
    .jsf-skip-link:focus + body {
        margin-top: 0;
    }

    Best regards,
    Ismael

    #1413792

    In reply to: Skip link

    Hi,

    But there is a black gap at the top of each page, where the skp-link appears. Could this be removed?

    This is why you have to move the skip link out of the div container. The black gap should not appear once the div has been removed.

    To adjust the style of the skip link, edit the css rule above and add your own properties to it.

    .jsf-skip-link:focus {
        opacity: 1;
        font-size: inherit;
    }
    

    Best regards,
    Ismael

    #1413780

    Hey Xiscoj,

    Thanks for sharing your code.
    I think it’s not working because of an extra dot in this part of your code:

    #top .a.trail-begin,

    Please try to replace it with:

    #top a.trail-begin,

    But I think you can replace it totally with:

    #top .breadcrumb-trail a, 
    #top .breadcrumb-trail span {
        font-size: 14px;
    }

    Hope it helps.

    Best regards,
    Nikko

    • This reply was modified 2 years, 7 months ago by Nikko.
    #1413745

    In reply to: Styling H2 tag

    Hi,

    Please try this CSS instead:

    .smallheading h2 {
      font-size: 29px;
    }

    Best regards,
    Rikard

    #1413730
    silviaxal
    Participant

    Hello!
    I’ve 4 menú items on left side menú and I need 4 different colors when evenry men is active.
    I’t works on hover, but do not on active state. I used these codes:

    #menu-item-118 .avia-menu-text {
    font-size: 15px!important; font-weight: bold!important; color:#4b7be5!important;
    }
    #menu-item-118 .avia-menu-text:hover {
    font-size: 15px!important; font-weight: bold!important; color:red!important;
    }
    #menu-item-118 .avia-menu-text a:active {
    font-size: 15px!important; font-weight: bold!important; color:red!important;
    }
    Thank you very much!

    #1413725
    Xiscoj
    Participant

    Hi,

    I have tried modifying the size of the text of breadcrumbs and so far I am stuck. I have used this code in general styling:

    /*TAMAÑO TEXTO DE BREADCRUMB*/
    
    /*--------------------------------*/
    #top .breadcrumb-title, 
    #top .a.trail-begin,
    #top .trail-end {
        font-size: 14px !important;
    }

    But have not worked fully, it does not work on home link.

    If i try to change it in advanced styles for breadcrumbs, it does not work at all.

    #1413673

    In reply to: Skip link

    Hi,

    Thank you for the update.

    The following css code should work, but you have to take the link out of the div element.

    .jsf-skip-link {
        opacity: 0;
        font-size: 0;
    }
    
    .jsf-skip-link:focus {
        opacity: 1;
        font-size: inherit;
    }

    Best regards,
    Ismael

    #1413661

    Hi alexs91,

    I just adjusted the font size for both the title and content inside the slider.
    I don’t know how it looks on mobile before the update, so I tried to check on webarchive how your website looks before on mobile (link in private content), that’s where I based it from.
    As for the second slide, I have adjusted it.
    These slider’s don’t really scale that well with mobile devices, so I think you can try to use layerslider for it.

    Best regards,
    Nikko

    #1413654

    In reply to: Styling H2 tag

    I used css like this
    h2 .smallheading {
    font-size: 29px;
    }
    or just
    .smallheading {
    font-size: 29px;
    }
    And in the elements advanced tab I added smallheading as a custom css class

    regards
    Nina

    #1413594

    In reply to: Styling H2 tag

    if I style it either under advanced styling or general styling/typography, the change would be site wide. Right?
    I only need to change the font-size in one place. That is why I thought giving it a custom css class would do the trick.

    #1413552

    In reply to: H2 Problem mobile

    Hi,

    Thank you for the update.

    Upon checking, it appears that the options in the General Styling > Typography panel are still set to their default or standard values. To address this, please adjust the settings according to your preferences. Additionally, you can modify the font size of the Special Heading element for different screen sizes by adjusting the options in the Styling > Font Sizes toggle.

    Best regards,
    Ismael

Viewing 30 results - 1,171 through 1,200 (of 18,717 total)