Viewing 30 results - 661 through 690 (of 18,716 total)
  • Author
    Search Results
  • #1445281

    In reply to: bugs in your software

    Hey Tom,

    Thank you for the inquiry.

    You can easily open a new inquiry using the form on the following page:

    // https://kriesi.at/support/forum/enfold/#new-post

    However, it looks like you haven’t registered an account in the forum yet. Please verify your purchase code and register an account in the forum using the field in the link below:

    // https://kriesi.at/support/register/

    Regarding your inquiries, please follow the steps below:

    1.) To increase the font size of the input fields, please add this code in the Enfold > General Styling > Quick CSS field:

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
        font-size: 2em;
    }
    

    2.) We were able to successfully send a message using the form. Would you mind providing a short clip or a screenshot of the issue? You can use Imgur, Dropbox, or any file hosting site to share the screenshot.

    Best regards,
    Ismael

    #1445274
    xfacta
    Participant

    Hi there

    How can I change the font size/heading of the blog category page headings. I need the category to be larger than the blog title.

    Eg Dowsing for Health (this is the heading size I want to change to H1 if possible – or just the font size of all category headings for blog topics)
    Health, News
    Healing with Magnets (Blog title)

    https://dowsingaustralia.com.au/category/health/

    Cheers
    Natasha

    #1445022

    you can only influence the select box ( as check boxes, radio buttons etc. ) by replacing the original html by a different html structure.

    put this to your child-theme functions.php:
    ( it is specific to your form – because the selector for that form element is given by the ID: #element_avia_6_1
    on other form elements it might be a different ID )

    function style_select_options(){
    ?>
    <script>
    window.addEventListener("DOMContentLoaded", function () { 
        (function($) {     
            $('.avia_ajax_form #element_avia_6_1').addClass('custom-select');
        })(jQuery);
    
        var x, i, j, l, ll, selElmnt, a, b, c;
        /* Look for any elements with the class "custom-select": */
        x = document.getElementsByClassName("custom-select");
        l = x.length;
        for (i = 0; i < l; i++) {
          selElmnt = x[i].getElementsByTagName("select")[0];
          ll = selElmnt.length;
          /* For each element, create a new DIV that will act as the selected item: */
          a = document.createElement("DIV");
          a.setAttribute("class", "select-selected");
          a.innerHTML = selElmnt.options[selElmnt.selectedIndex].innerHTML;
          x[i].appendChild(a);
          /* For each element, create a new DIV that will contain the option list: */
          b = document.createElement("DIV");
          b.setAttribute("class", "select-items select-hide");
          for (j = 1; j < ll; j++) {
            /* For each option in the original select element,
            create a new DIV that will act as an option item: */
            c = document.createElement("DIV");
            c.innerHTML = selElmnt.options[j].innerHTML;
            c.addEventListener("click", function(e) {
                /* When an item is clicked, update the original select box,
                and the selected item: */
                var y, i, k, s, h, sl, yl;
                s = this.parentNode.parentNode.getElementsByTagName("select")[0];
                sl = s.length;
                h = this.parentNode.previousSibling;
                for (i = 0; i < sl; i++) {
                  if (s.options[i].innerHTML == this.innerHTML) {
                    s.selectedIndex = i;
                    h.innerHTML = this.innerHTML;
                    y = this.parentNode.getElementsByClassName("same-as-selected");
                    yl = y.length;
                    for (k = 0; k < yl; k++) {
                      y[k].removeAttribute("class");
                    }
                    this.setAttribute("class", "same-as-selected");
                    break;
                  }
                }
                h.click();
            });
            b.appendChild(c);
          }
          x[i].appendChild(b);
          a.addEventListener("click", function(e) {
            /* When the select box is clicked, close any other select boxes,
            and open/close the current select box: */
            e.stopPropagation();
            closeAllSelect(this);
            this.nextSibling.classList.toggle("select-hide");
            this.classList.toggle("select-arrow-active");
          });
        }
    
        function closeAllSelect(elmnt) {
          /* A function that will close all select boxes in the document,
          except the current select box: */
          var x, y, i, xl, yl, arrNo = [];
          x = document.getElementsByClassName("select-items");
          y = document.getElementsByClassName("select-selected");
          xl = x.length;
          yl = y.length;
          for (i = 0; i < yl; i++) {
            if (elmnt == y[i]) {
              arrNo.push(i)
            } else {
              y[i].classList.remove("select-arrow-active");
            }
          }
          for (i = 0; i < xl; i++) {
            if (arrNo.indexOf(i)) {
              x[i].classList.add("select-hide");
            }
          }
        }
    
        /* If the user clicks anywhere outside the select box,
        then close all select boxes: */
        document.addEventListener("click", closeAllSelect); 
    
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'style_select_options');
    

    after that for quick.css:

    /*the container must be positioned relative:*/
    .custom-select {
      font-family: inherit;
      text-transform: uppercase;
    }
    
    .custom-select select {
      display: none !important;
    }
    
    #top .select-selected {
      background-color: var(--enfold-main-color-bg);
      border-color: var(--enfold-main-color-primary);
      border-width: 1px;
      height: 41px;
      font-size: 12px;
      color: var(--enfold-main-color-primary);
      opacity: 0.7
    }
    
    /*style the arrow inside the select element:*/
    .select-selected:after {
      position: absolute;
      content: "";
      top: 18px;
      right: 10px;
      width: 0;
      height: 0;
      border: 6px solid transparent;
      border-color: #666 transparent transparent transparent;
    }
    
    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
      border-color: transparent transparent #666 transparent;
      top: 12px;
    }
    
    /*style the items (options), including the selected item:*/
    .select-items div,
    .select-selected {
      color: #FFF;
      padding: 2px 15px 2px;
      border: 1px solid transparent;
      border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
      cursor: pointer;
      user-select: none;
    }
    
    /*style the items (options), including the selected item:*/
    .select-selected {
      padding: 5px 15px 2px;
    }
    
    /*style items (options):*/
    .select-items {
      position: absolute;
      background-color: #ddd;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      font-size: 12px
    }
    
    /*hide the items when the select box is closed:*/
    .select-hide {
      display: none;
    }
    
    .select-items div:hover, .same-as-selected {
      background-color: #7d2a7e;
      color: #fff !important;
    }

    Looks then this way – but you can now style each option and pseudo states to your needs:

    • This reply was modified 1 year, 9 months ago by Guenni007.
    #1444420

    In reply to: Upgrade from 4.8 6.3

    Hi,

    This works great, everything works fine, but before I upgrade the normal site, I have a little thing still bugging me. The fonts on the upgraded site overall loos bold compared with the old one. I managed to make some looks normal, from the advanced style.
    For the menu I made the Menu links 0,03em and normal
    For the H1-H6 changed the headings to normal size text.
    For the top text above the menu change the Small bar above the menu to font weight clear and letter spacing 0,02em
    For the normal text I changed the body and p to font weight to clear yet still looks bold. Can I make this look like the original site and not bold, or is there an easier way to make to change the font overall without changing all this?

    Bellow is the staging site and the original check the menu and submenu, and the content text on the page.

    http://staging.jabonescalvo.com/quienes-somos
    https://jabonescalvo.com/quienes-somos

    Thank you

    • This reply was modified 1 year, 9 months ago by smic717394.
    #1444162

    Hey Rikard,

    sorry I change the page, so it’s not working anymore. Sending you the new link. :)
    I would like to have the category grid a bit smaller. Not big 4 columns, but for example 5 columns with smaller pictures, so it is aligned with the product grid below.
    As the category list is inserted via the code block, there is no possibility in the theme to set the characteristic for the product categories grid. :)
    So my question is if there is any way to adjust for example the size, the number of columns, size of the font..

    Thank you
    Martina

    #1444125

    I would normally say I could probably figure the CSS out but because 6.5.2 has swapped around the order of ‘form’ and ‘phone-info’ in the HTML, and the “id=searchform” line is now outside of the phone-info div, the phone-info CSS definition is not working as it should.

    This is the default from layout.css

    .phone-info {
        float: left; - overridden by your float:right directive above
        font-weight: bold;
        line-height: 20px;
        font-size: 11px;
        padding: 5px 0;
    }

    If I change the first padding parameter, then white space around the box does not appear until a setting of “12px 0” and then space is only added beneath the search box, not above. If I increase it further just to test, say “25px 0”, then again no padding is added above.

    So please can you have a look at what is going on and advise which CSS elements I now need to target to get control back of the box, e.g. how to get padding to appear above and below the box?

    #1444062

    Hi,
    Thank you for your patience, I made some adjustments, this is the css now:

    @media only screen and (max-width: 989px) {
    	#header_main > .widget {
    	display: none;
    }
    }	
    @media only screen and (min-width: 990px) and (max-width: 1439px) {
      .av-logo-container .inner-container .widget #searchform {
        width: 100%;
        min-width: 500px;
      }
      .av-logo-container .inner-container .widget {
    	display: flex;
        order: 3;
        flex-basis: 65%;
        right: -15%;
        top: -5%;
    }
    }
    @media only screen and (min-width: 1440px) { 
        .av-logo-container .inner-container .widget {
            display: flex;
            order: 3;
            flex-basis: 65%;
            right: 0;
            top: -5%;
        }
        .av-logo-container .inner-container .widget > search {
            width:100%
        }
    }	
    @media only screen and (min-width: 990px) {
    .av-logo-container .inner-container {
    	display: flex;
        flex-direction: row-reverse;
    }
    
    #header_main > .widget {
    	display: none;
    }  
    .av-logo-container .inner-container .widget #searchform .ajax_search_response {
    	background-color: #fff;
        z-index: 3;
    }
    .header_color #search-6 input[type=submit] {
        background-color: #da291c;
        color: #fff;
     }
    .header_color #search-6 input[type=submit]:hover {
        background-color: #da291c;
        color: #fff;
     }
      #top #header.header_color .widget input[type=text] {
    	border-color: ebebeb;
    	border-radius: 3px;
    }
    #top #header.header_color .widget #searchsubmit {
        border-radius: 0 3px 3px 0;
    }
    
    #top #header.header_color .widget #searchform #searchsubmit {
     	font-size: 16px;
    }
    .av-logo-container .inner-container #menu-item-shop {
    	display: flex;
        order: 2;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    #1443882
    tcampaner
    Participant

    Hi!

    I have created a blog post page using the blog post element and I would like to format their appearance https://www.alexandrubugnariu.ro/blog/ :
    – align everything to the left (category, title, line under the title, date, comments)
    – put date & comments under the title
    – have the title with normal letters instead of uppercase (only for the blog titles, not everywhere on the website)
    – have a „read more” link

    And, in the actual blog post the same:
    – aligned left (including the space occupied in the page; not centered, but left aligned)
    – normal fornt title (no uppercase)
    – smaller font size for the title

    Thank you!

    #1443649

    Hi,
    Thank you for your patience I changed this css:

    @media only screen and (min-width: 990px) {
        .av-logo-container .inner-container {
            display: flex;
            flex-direction: row-reverse;
        }
    
        @media only screen and (min-width: 990px) {
            /* Add your Desktop Styles here */ .av-logo-container .inner-container .widget #searchform {
                width: 100%;
                min-width: 500px;
            }
        }
    
        .av-logo-container .inner-container .widget {
            display: flex;
            order: 3;
            flex-basis: 80%;
            right: -15%;
            top: -5%;
        }
    
        #header_main > .widget {
            display: none;
        }
    
        .av-logo-container .inner-container .widget #searchform {
            width: 100%;
        }
    
        .av-logo-container .inner-container .widget #searchform .ajax_search_response {
            background-color: #fff;
            z-index: 3;
        }
    
        .header_color #search-6 input[type=submit] {
            background-color: #da291c;
            color: #fff;
        }
    
        .header_color #search-6 input[type=submit]:hover {
            background-color: #da291c;
            color: #fff;
        }
    
        #top #header.header_color .widget input[type=text] {
            border-color: ebebeb;
            border-radius: 3px;
        }
    
        #top #header.header_color .widget #searchsubmit {
            border-radius: 0 3px 3px 0;
        }
    
        #top #header.header_color .widget #searchform #searchsubmit {
            font-size: 16px;
        }
    
        .av-logo-container .inner-container #menu-item-shop {
            display: flex;
            order: 2;
        }
    }

    to this:

    @media only screen and (max-width: 989px) {
    	#header_main > .widget {
    	display: none;
    }
    }	
    @media only screen and (min-width: 990px) and (max-width: 1439px) {
      .av-logo-container .inner-container .widget #searchform {
        width: 100%;
        min-width: 500px;
      }
      .av-logo-container .inner-container .widget {
    	display: flex;
        order: 3;
        flex-basis: 65%;
        right: -15%;
        top: -5%;
    }
    }
    @media only screen and (min-width: 1440px) { 
        .av-logo-container .inner-container .widget {
            display: flex;
            order: 3;
            flex-basis: 80%;
            right: -15%;
            top: -5%;
        }
        .av-logo-container .inner-container .widget #searchform {
        width: 100%;
        min-width: 380%;
      }
    }	
    @media only screen and (min-width: 990px) {
    .av-logo-container .inner-container {
    	display: flex;
        flex-direction: row-reverse;
    }
    
    #header_main > .widget {
    	display: none;
    }  
    .av-logo-container .inner-container .widget #searchform {
    	 width: 100%;
    }
    .av-logo-container .inner-container .widget #searchform .ajax_search_response {
    	background-color: #fff;
        z-index: 3;
    }
    .header_color #search-6 input[type=submit] {
        background-color: #da291c;
        color: #fff;
     }
    .header_color #search-6 input[type=submit]:hover {
        background-color: #da291c;
        color: #fff;
     }
      #top #header.header_color .widget input[type=text] {
    	border-color: ebebeb;
    	border-radius: 3px;
    }
    #top #header.header_color .widget #searchsubmit {
        border-radius: 0 3px 3px 0;
    }
    
    #top #header.header_color .widget #searchform #searchsubmit {
     	font-size: 16px;
    }
    .av-logo-container .inner-container #menu-item-shop {
    	display: flex;
        order: 2;
    }
    }

    to update your live site copy your snippet named “header widget placement css” to your live site.

    Best regards,
    Mike

    #1443446

    Hi,

    The reason why the CSS is only applying on mobile is because you have placed it after an open media query:

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

    I added the CSS at the top for you, and it’s working as expected. Please review your site and close the media query at the proper location.

    Best regards,
    Rikard

    #1443443

    In reply to: menu items

    Hi,

    Thanks for the clarification. 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 a:active,  #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a:focus  {
        font-size: 20px;
        color: yellow !important;
      }
    }

    Best regards,
    Rikard

    #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

    tonyiatridis
    Participant

    I have this code:

    [av_button label='Learn more' link='manually,http://specinvtraining.com' link_target='blank' size='small' position='left' label_display='' title_attr='' icon_select='no' font='entypo-fontello' color='orange' custom_bg='#oooooo' custom_font='#ffffff' av_uid='av-bl0j5' id='' custom_class='' admin_preview_bg='']

    But the button open the new website in the same window.

    Must need. tweak?

    Thanks

    #1442608

    Topic: Glitch on mobile

    in forum Enfold
    northorie
    Participant

    Hi, I guess my custom css produces a glitch on mobile: The underlined font is not displayed properly and the cookie banner appears misplaced (at the far bottom of the page).
    On Desktop everthing looks great. Can you help me please?

    This is my custom css:

    /* Header mobile */
    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    }
    @media only screen and (max-width: 767px) {
    .responsive #header_main .container {
        height: 50px !important;
    }
    .responsive .logo a {
        vertical-align: top !important;
    }
    .responsive .logo img {
        max-height: 50px !important;
    }
    }
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        top: -15px;
        height: 45px;
        left: auto;
        right: 0;
        display: block;
        position: absolute;
    }
    }
    @media only screen and (max-width: 500px) { 
    .responsive #top #wrap_all #main {
            padding-top: 50px !important;
        }
    }
    /* Farbe Nachrichtenversand */
    h3.avia-form-success{
     color:#99a502!important;	
    }
    /* Header Button Mobile*/
    @media only screen and (max-width: 767px) {
    .home .avia-fullscreen-slider .caption_bottom .slideshow_caption {
        bottom: 325px;
        left: 300px;
    }
    .home .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: #a37652;
        color: white;
        border-radius: 10px;
    }
    }
    @media only screen and (max-width: 767px) {
      #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: #a37652;
        color: white;
      border-radius: 10px;
      }
    }
    /* Text mit Foto*/
    .avia_textblock p img {
    	  border-radius: 100%;
    	  box-shadow: rgba(255, 255, 255, 0.6) 0px 0px 4px 4px;
    }
    .avia_textblock img.alignleft {
      margin-right: 40px;
    margin-bottom: 20px;
    }
    @media only screen and (max-width: 767px) { 
    #hello .avia_textblock img {
    	width: 50%;
    }
    }
    /* ScrollDown Pfeil */
    #top .scroll-down-link {
    	color: #a47654;
    }
    /* Blog Leerzeile entfernen */
    .page-id-691 #after_section_2 {
      display: none; 
    }
    /* Blog Postdatum entfernen */
    .page-id-691 .av-masonry .av-masonry-date {
      display: none; 
    }
    /* SocialMedia Icons*/
    #top #wrap_all .av-social-link-instagram:hover a, #top #wrap_all .av-social-link-instagram a:focus {
        color: #fff;
        background-color: #c82161;
    }
    /* Icon Circle schneller*/
    .avia_start_animation .avia-icon-circles-inner {
      transition: all 0s cubic-bezier(0,0,0,0);
    }
    /* Desktop Menu*/
    @media only screen and (max-width: 2500px) {
      #top #header.av_header_transparency .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header.av_header_transparency .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }
    /* Header Button Desktop*/
    @media only screen and (max-width: 450px) { 
    .slideshow_inner_caption {
    	top: -40px;
    }
    }
    @media only screen and (min-width: 768px) { 
    #top .caption_bottom .slideshow_caption .slideshow_inner_caption {
        position: relative;
        text-align: center;
    }
    #top .slideshow_inner_caption .avia-slideshow-button.avia-button {
        width: 500px;
        height: 56px;
        font-size: 22px;
    }
    @media only screen and (min-width: 768px) { 
    .slideshow_inner_caption {
    	top: -125px;
    }
    }
    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: #a37652;
        color: white;
        border-radius: 10px;
    }
    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button:hover {
        background-color: #c79a52;
        color: white;
        border-radius: 15px;
    }
    /* CookieBanner*/
    #top .avia-cookie-consent .avia-cookie-consent-button.av-extra-cookie-btn,
    #top .avia-popup .avia-cookie-consent-button.av-extra-cookie-btn {
        background-color: #484f5d;
        color: #ffffff;
        border-color: #484f5d;
       border-radius: 10px;
    }
    #top #wrap_all .header_color #menu-item-1628.av-menu-button-colored > a .avia-menu-text,
    #top #wrap_all .header_color #menu-item-1627.av-menu-button-colored > a .avia-menu-text {
        background-color: #484f5d;
        color: #ffffff;
        border-color: #484f5d;
       border-radius: 10px;
    }
    .html_elegant-blog #top .avia-content-slider .blog-categories {
      display:  none;
    }

    Website-Link on private content.

    Thank you in advance an best regards!

    Thanks, I guess I fixed my css by coping each code one by one back in.
    On Desktop everything looks good again.
    But the button on the mobile slider just won’t change.
    Here is my current full css.

    /* Header mobile */
    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    }
    @media only screen and (max-width: 767px) {
    .responsive #header_main .container {
        height: 50px !important;
    }
    .responsive .logo a {
        vertical-align: top !important;
    }
    .responsive .logo img {
        max-height: 50px !important;
    }
    }
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        top: -15px;
        height: 45px;
        left: auto;
        right: 0;
        display: block;
        position: absolute;
    }
    }
    @media only screen and (max-width: 500px) { 
    .responsive #top #wrap_all #main {
            padding-top: 50px !important;
        }
    }
    /* Farbe Nachrichtenversand */
    h3.avia-form-success{
     color:#99a502!important;	
    }
    /* Text mit Foto*/
    .avia_textblock p img {
    	  border-radius: 100%;
    	  box-shadow: rgba(255, 255, 255, 0.6) 0px 0px 4px 4px;
    }
    .avia_textblock img.alignleft {
      margin-right: 40px;
    margin-bottom: 20px;
    }
    @media only screen and (max-width: 767px) { 
    #hello .avia_textblock img {
    	width: 50%;
    }
    }
    /* ScrollDown Pfeil */
    #top .scroll-down-link {
    	color: #a47654;
    }
    /* Blog Leerzeile entfernen */
    .page-id-691 #after_section_2 {
      display: none; 
    }
    /* Blog Postdatum entfernen */
    .page-id-691 .av-masonry .av-masonry-date {
      display: none; 
    }
    /* SocialMedia Icons*/
    #top #wrap_all .av-social-link-instagram:hover a, #top #wrap_all .av-social-link-instagram a:focus {
        color: #fff;
        background-color: #c82161;
    }
    /* Icon Circle schneller*/
    .avia_start_animation .avia-icon-circles-inner {
      transition: all 0.2s cubic-bezier(0.175,0.885,0.320,1.275);
    }
    /* Desktop Menu*/
    @media only screen and (max-width: 2500px) {
      #top #header.av_header_transparency .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header.av_header_transparency .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }
    /* Header Button Desktop*/
    @media only screen and (max-width: 450px) { 
    .slideshow_inner_caption {
    	top: -40px;
    }
    }
    @media only screen and (min-width: 768px) { 
    #top .caption_bottom .slideshow_caption .slideshow_inner_caption {
        position: relative;
        text-align: center;
    }
    #top .slideshow_inner_caption .avia-slideshow-button.avia-button {
        width: 500px;
        height: 56px;
        font-size: 22px;
    }
    @media only screen and (min-width: 768px) { 
    .slideshow_inner_caption {
    	top: -125px;
    }
    }
    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: #a37652;
        color: white;
        border-radius: 10px;
    }
    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button:hover {
        background-color: #c79a52;
        color: white;
        border-radius: 15px;
    }
    /* Header Button Mobile*/
    @media only screen and (max-width: 767px) {
    .home .avia-fullscreen-slider .caption_bottom .slideshow_caption {
        bottom: 250px;
    }
    .home .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: #a37652;
        color: white;
        border-radius: 10px;
    }
    }
    #1442357
    clbdcnpafe
    Participant

    Hello,

    In the Private Content section, we are providing two links, one which in the smartphone version shows body text without the fold/unfold feature turned on, and the other with that feature turned on. That second page version includes the word “defect” in the link. You will see that in the second version, the page does not set up correctly; the right side of the body text extends beyond the limits of the screen.. We have tried making text font size smaller but that does not solve the problem.

    NOTE: The fold/unfold feature works fine on laptop/desktop screens.

    Please let us know if this can be fixed without quick css; the goal here is to make sure that the “Read More” text works on smartphones with different screen sizes, not just one size.

    Let us know if screenshots will help; not sure how to send them here.

    Thanks,

    Cliff

    I’m just not looking through in my css anymore. I’m afraid to make it worse
    Can you please help me?

    /* Header mobile */
    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    }
    @media only screen and (max-width: 767px) {
    .responsive #header_main .container {
        height: 50px !important;
    }
    .responsive .logo a {
        vertical-align: top !important;
    }
    .responsive .logo img {
        max-height: 50px !important;
    }
    }
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        top: -15px;
        height: 45px;
        left: auto;
        right: 0;
        display: block;
        position: absolute;
    }
    }
    @media only screen and (max-width: 500px) { 
    .responsive #top #wrap_all #main {
            padding-top: 50px !important;
        }
    }
    /* Farbe Nachrichtenversand */
    h3.avia-form-success{
     color:#99a502!important;	
    }
    /* Text mit Foto*/
    .avia_textblock p img {
    	  border-radius: 100%;
    	  box-shadow: rgba(255, 255, 255, 0.6) 0px 0px 4px 4px;
    }
    .avia_textblock img.alignleft {
      margin-right: 40px;
    margin-bottom: 20px;
    }
    @media only screen and (max-width: 767px) { 
    #hello .avia_textblock img {
    	width: 50%;
    }
    }
    /* ScrollDown Pfeil */
    #top .scroll-down-link {
    	color: #a47654;
    }
    .html_header_transparency #top #main .caption_bottom .slideshow_caption {
        padding-top: 0;
    }
    }
    @media only screen and (max-width: 767px) { 
    	#top .caption_bottom .slideshow_caption .slideshow_inner_caption {
        position: relative;
        text-align: center;
    }
    #top .slideshow_inner_caption .avia-slideshow-button.avia-button {
    	padding: 10px 6px;
    	font-size: 10px;
    }
    }
    .html_header_transparency #top #main .caption_bottom .slideshow_caption {
        padding-top: 0;
    }
    }
    /* SlideShow Button Desktop*/
    @media only screen and (min-width: 768px) { 
    #top .caption_bottom .slideshow_caption .slideshow_inner_caption {
        position: relative;
        text-align: center;
    }
    #top .slideshow_inner_caption .avia-slideshow-button.avia-button {
        width: 500px;
        height: 56px;
        font-size: 22px;
    }
    @media only screen and (min-width: 768px) { 
    .slideshow_inner_caption {
    	top: -125px;
    }
    }
    /* SlideShow Button Mobil */
    @media only screen and (max-width: 767px) {
    .home .avia-fullscreen-slider .caption_bottom .slideshow_caption {
        bottom: 250px;
    }
    .home .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: #a37652;
        color: white;
        border-radius: 10px;
    }
    }
    /* SocialMedia Icons*/
    #top #wrap_all .av-social-link-instagram:hover a, #top #wrap_all .av-social-link-instagram a:focus {
        color: #fff;
        background-color: #c82161;
    }
    .page-id-691 .av-masonry .av-masonry-date {
      display: none; 
    }
    .avia_start_animation .avia-icon-circles-inner {
      transition: all 0.2s cubic-bezier(0.175,0.885,0.320,1.275);
    }
    @media only screen and (max-width: 2500px) {
      #top #header.av_header_transparency .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header.av_header_transparency .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }
    .page-id-691 #after_section_2 {
      display: none; 
    }
    #1442105

    I think I have a lot of extra unneeded CSS code. Could you take a look and fix this for me?

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

    #header_meta a, #header_meta span {
    font-size:17px !important;
    }

    /* Sticky header on mobile */
    @media only screen and (max-width: 767px) {
    .responsive #top #main {
    /* Margin top value should be equal to header height*/
    margin-top: 130px;
    }
    .responsive #top #wrap_all #header {
    position: fixed;
    }
    }

    @media only screen and (max-width: 1200px) {
    .av-main-nav > li.menu-item { display: none; }
    .av-main-nav > li.menu-item-avia-special { display: block; }
    }

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

    @media only screen and (max-width: 479px) {
    .responsive #top .slideshow_caption h2 {
    font-size: 30px !important;
    }

    .responsive #top .slideshow_caption .avia-caption-content {
    font-size: 8px !important;
    line-height: 10px;
    }

    .avia-slideshow-inner, .avia-slideshow-inner li, .avia-slideshow-inner li img {
    height: 20vh !important;
    }
    }

    @media only screen and (max-width: 767px) {
    #top #wrap_all #main .avia-section {
    background-image: none !important;
    }
    }

    .html_elegant-blog #top .post-entry .post-meta-infos,
    .html_elegant-blog .avia-content-slider .slide-meta,
    #top .news-time {
    display: none;
    }

    html, body {
    background-color: #04aef7 !important;
    }

    .page-id-2413 .slideshow_align_caption {
    vertical-align: top;
    }

    @media only screen and (max-width: 767px) {
    /* Add your Mobile Styles here */
    .avia-slideshow li {
    visibility: visible !important;
    opacity: 1 !important;
    }
    }

    Hi,
    Thanks Guenni007, your transfer_fontsize_to_backgroundsize script is a nice touch :)

    Best regards,
    Mike

    I would upload an unspectacular iconfont. Here I have inverted numbers. Link

    Then upload your coloured icons and make a note of the path for each icon.
    now replace an icon of this font with the noted links of your coloured icons

    this comes to your quick css:

    .av_font_icon {
        overflow: visible !important;
    }
    
    [data-av_iconfont="solar-icons"]  {
      content: " ";
      background-size: 100px;    
      background-position: center center;
      background-repeat: no-repeat;
      border: none !important;
      color: transparent !important;
    }
    
    [data-av_iconfont="solar-icons"][data-av_icon="\e800"]{background-image: url(/wp-content/uploads/globe.gif) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e801"]{background-image: url(/wp-content/uploads/broken-spheres.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e802"]{background-image: url(/wp-content/uploads/bubbles.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e803"]{background-image: url(/wp-content/uploads/chrome-balls.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e804"]{background-image: url(/wp-content/uploads/film.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e805"]{background-image: url(/wp-content/uploads/glas-dots.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e806"]{background-image: url(/wp-content/uploads/glas-waben.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e807"]{background-image: url(/wp-content/uploads/green-world.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e808"]{background-image: url(/wp-content/uploads/home.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e809"]{background-image: url(/wp-content/uploads/hui.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e80a"]{background-image: url(/wp-content/uploads/lotus.svg) !important}
    [data-av_iconfont="solar-icons"][data-av_icon="\e80b"]{background-image: url(/wp-content/uploads/nachhaltig1.svg) !important}
    
    

    Now – if you place your circled number 1 – you can see even in preview – the replaced colored icon:
    And – yes even animated gifs can be inserted:

    see replaced first icon : https://webers-testseite.de/abc/

    PS: on that page with the snippets – you can see that i use the elements sizes for the icons – to generate the background-size :
    https://enfold.webers-webdesign.de/colorized-font-icons/

    if you like to use that too – remove from css code above the background-size line

    function transfer_fontsize_to_backgroundsize(){
    ?>
    <script>
    window.addEventListener("DOMContentLoaded", function () { 
    (function($) {     
    	$('.av-icon-char[data-av_iconfont="solar-icons"], .iconbox_icon[data-av_iconfont="solar-icons"]').each(function() {
    		var iconLineHeight = parseInt($(this).css('line-height'));
    		var iconPadding = parseInt($(this).css('padding'));
    		$(this).css('background-size', (iconLineHeight + 2*(iconPadding))+'px');
    	});
    })(jQuery);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'transfer_fontsize_to_backgroundsize');

    Hi,
    This thread covers a couple of different methods and I think that it might be confusing.
    So if you want to use color icons, then you would use Guenni007’s example, the easiest path is to upload the png images to your media library and then for each one choose a existing theme icon that you would probably never use as a placeholder, for example the keyboard ( ue83a ):
    Enfold Support 5667
    and then use this css to replace it with your image:

    [data-av_iconfont="entypo-fontello"][data-av_icon="\e83a"]:before{font-size:0;width: 40px;display: inline-block;background-image: url(/wp-content/uploads/2024/05/tree.svg) !important}

    now whenever you use the keyboard icon on your site your new image will show:
    Enfold Support 5670
    If you want to use B&W icons you can take the B&W PNG images and convert them to SVG, then follow Guenni007’s steps to fix them for Fontello then upload the SVG to Fontello to create your icon font:
    Enfold Support 5672
    then download the new icon font zip file and upload it to Enfold Theme Options ▸ Import/Export ▸ Iconfont Manager and then they will show in your icon list.

    Best regards,
    Mike

    #1441759

    In reply to: Full page overlay menu

    Hi,

    Thank you for the inquiry.

    1.) You can adjust the style of the burger menu items in the Enfold > Advanced Styling panel. Look for the element under the Main Menu (Icon) section. You can also use this css code:

    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li {
        line-height: 1em;
        font-size: 2em;
    }
    

    Please make sure to toggle the Enfold > File Compression settings and purge the cache.

    2.) Add this script to the functions.php file to make the close icon fade out on scroll down and fade in again on scroll up.

    function ava_custom_script_fade_scroll()
    {
        ?>
        <script>
            (function ($)
            {
                $(document).ready(function () {
                    var lastScrollTop = 0;
                    var element = $('.av-hamburger.av-hamburger--spin.av-js-hamburger.av-inserted-main-menu.is-active');
                    $(window).scroll(function () {
                        var st = $(this).scrollTop();
                        if (st > lastScrollTop) {
                            element.fadeOut();
                        } else {
                            element.fadeIn();
                        }
                        lastScrollTop = st;
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_fade_scroll');
    
    

    Best regards,
    Ismael

    #1441755

    Hi,

    Thank you for the info.

    We adjusted the code in the Quick CSS field a bit. Please make sure to purge the cache before checking the page.

      #menu-item-shop .cart_dropdown_link {
        padding: 10px;
        font-size: 20px
      }
    
      .responsive.html_cart_at_menu #top .main_menu .menu>li:last-child {
        padding-right: 0;
        margin-right: 10px;
      }
    

    Best regards,
    Ismael

    #1441576

    Topic: Button CSS-class

    in forum Enfold
    hallo352
    Participant

    Hi support team,

    we want to customize a button.

    Using <button class=”mein-benutzerdefinierter-button”>Klick mich!</button> works fine but does not contain a link.
    Using Klick mich! contains the link but does not work.

    CSS-class we used is:
    /* neue CSS-Klasse für den benutzerdefinierten Button */
    .mein-benutzerdefinierter-button {
    /* Hintergrundfarbe */
    background-color: #7b8a5e;
    /* Textfarbe */
    color: #fff;
    /* Schriftgröße */
    font-size: 16px;
    /* Schriftart */
    font-family: Arial, sans-serif; /* Setze die Schriftart auf Arial, falls nicht verfügbar, auf die Standardschriftart der Gruppe sans-serif */
    /* Text in Großbuchstaben transformieren */
    text-transform: uppercase;
    /* Umrandung */
    border: 2px solid #7b8a5e; /* Setze die Umrandung auf die gleiche Farbe wie den Hintergrund */
    /* Padding (Innenabstand) */
    padding: 10px 20px;
    /* Runde Ecken */
    border-radius: 5px;
    /* Cursor-Stil */
    cursor: pointer;
    /* Textausrichtung */
    text-align: center;
    /* Textdekoration */
    text-decoration: none;
    /* Weitere Styles nach Bedarf */
    }

    /* Hovern */
    .mein-benutzerdefinierter-button:hover {
    background-color: red; /* Ändere die Hintergrundfarbe beim Hover-Effekt */
    }

    Can you see why this is not working?
    Thanks
    Tanja

    I guess this is the code for the slideshow button on desktop, isn’t it?

    @media only screen and (max-width: 450px) { 
    .slideshow_inner_caption {
    	top: -40px;
    }
    }
    @media only screen and (min-width: 768px) { 
    #top .caption_bottom .slideshow_caption .slideshow_inner_caption {
        position: relative;
        text-align: center;
    }
    #top .slideshow_inner_caption .avia-slideshow-button.avia-button {
        width: 500px;
        height: 56px;
        font-size: 22px;
    }
    @media only screen and (min-width: 768px) { 
    .slideshow_inner_caption {
    	top: -125px;
    }
    }
    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: #a37652;
        color: white;
        border-radius: 10px;
    }
    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button:hover {
        background-color: #c79a52;
        color: white;
        border-radius: 15px;
    }

    I would probably need it a second time for the second element?

    #1441473

    In reply to: Upgrade from 4.8 6.3

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

    header .menu .avia-menu-text {
        text-transform: uppercase;
    }

    it is the css from your file: https://jabonescalvo.com/c/themes/jabonescalvo/css/app.css perhaps you will want to add it to your staging site Quick CSS:

    /* TAG REDEF */
    body, 
    h1, h2, h3, h4, h5 {
    	text-rendering: optimizelegibility;
    	-webkit-font-smoothing: antialiased;
    }
    
    /* ENFOLD REDEF */
    .av-special-heading .av-subheading { /*font-family: 'Playfair Display', serif;*/ }
    
    /* HEADER */
    header.av_header_transparency #header_meta .phone-info.with_nav span, 
    header.av_header_transparency #header_meta .sub_menu a { /*color: #000 !important;*/ }
    header .menu .avia-menu-text { text-transform: uppercase; }
    
    /* HOME */
    #home_slider img { margin-right: 50px; }
    
    /* BREADCRUMBS */
    .rank-math-breadcrumb { font-size: 14px; }
    
    /* PAGINAS */
    #cabecera_pagina .content { padding-bottom: 15px; }
    #cabecera_pagina .avia_textblock { text-decoration: underline; }
    
    /* BARRA LATERAL PAGINAS */
    aside .widget_text {
    	/*background: url(); */
    	padding: 20px;
    }
    
    /* CATEGORIES */
    .slide-meta { display: none; }
    
    /* POST */
    
    /* CONTACT */
    
    /* LANDINGS */
    body.page-landing-base .av_font_icon, 
    body.page-auditoria-web .av_font_icon { display: inline-block; } 
    body.page-landing-base .av_font_icon a, 
    body.page-auditoria-web .av_font_icon a { text-decoration: none !important; } 
    
    /* FOOTER & SOCKET */
    #footer #text-4 { margin-bottom: 0; }
    #footer .avia_combo_widget { margin-top: 0; }
    .cookie-notice-container a { 
    	color: #fff; border: 1px solid #eaeaea; 
    	padding: 3px 5px;
    	border: 1px solid #eaeaea; 
    }
    
    /* MQs */
    @media only screen and (max-width: 767px) {
    	h1 { font-size: 32px !important; }
    	h2 { font-size: 28px !important; }
    }

    Best regards,
    Mike

    thanks – with

    function my_vars_outputs( $output ){
      $output .= "--my-variable-font-size-theme-h3: min(max(18px, calc(1.125rem + ((1vw - 3.2px) * 1.1864))), 32px); min-height: 0vw;\n";
      $output .= "--your-font-size-theme-h4: 20px;\n";
      return $output;
    }
    add_filter('avf_dynamic_css_additional_vars', 'my_vars_outputs');

    it works – but with avf_dynamic_css_after_vars i can not see a change.

    Edit:
    This illustration may help you to better understand how to use it.

    function my_vars_outputs( $output ){
    $output .= "
      #myID {
            font-size: 28px; 
      } 
      .myClass {
            font-size: 20px; 
      } 
    ";
      return $output;
    }
    add_filter('avf_dynamic_css_after_vars', 'my_vars_outputs');

    Edit: – ok now i see – but what benefit has that after_vars ?

    Hey Guenter,

    The filters are in ..\enfold\css\dynamic-css.php line 129ff.

    ‘avf_dynamic_css_additional_vars’:

    Is located inside :root{ …. }
    Simply return additional vars (pseudo code only):

    
    function my-xxx( $output )
    {
    $output .= "--your-font-size-theme-h3: 20px;\n";
    $output .= "--your-font-size-theme-h4: 20px;\n";
    
    return $output;
    }
    

    ‘avf_dynamic_css_additional_vars’ is the same but outside any selectors. You are free to return anything you like – it must be valid CSS rules
    e.g. a media query with vars.

    Best regards,
    Günter

    #1441318
    Guenni007
    Participant

    if you like to have gradient fillings for icons on enfold you can use that background-clip: text

    on all icons:

    [data-av_icon]:before {
      background-size: 100% 100%;
      background: var(--wp--preset--gradient--cool-to-warm-spectrum);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    as background you can use the existing css variable gradients – or any gradient you like.

    if you need to be more specific – than you had to use custom classes.

    #1441294

    Hi,
    To change the h1 font size on single posts try this css:

    #top.single-post #wrap_all .all_colors .post-entry h1.post-title.entry-title {
    	font-size: 20px;
    }

    I’m not sure what you mean by changing your image size, when you upload an image WordPress creates thumbnails of it to be used in different situations, often cropping your image, but for best results you should resize you image before you upload it, here is a free online resizer. If you need further help with this please open a new thread and explain in more detail including the sie you want the image to show and what size you are uploading.
    Please note that we ask that you create a new thread for each issue, this helps other users find solutions based on the opening subject line quicker and helps keep the thread length manageable and on topic for multiple mods to assist. Thank you for your understanding.

    Best regards,
    Mike

Viewing 30 results - 661 through 690 (of 18,716 total)