Viewing 30 results - 661 through 690 (of 18,726 total)
  • Author
    Search Results
  • Hi Mike.

    Ok, I have up with Gutenberg and recreated the pricing page with avia advanced. layout builder.

    you can find the link in private content.

    I’ve managed to adjust the pricing table mostly to what I need. One remaining question.

    How can I keep the pricing table to the 3 main breakpoints (laptop tablet phone) as the standard @media sizes in enfold. so that the column width doesn’t dynamically change as the browser width is reduced?

    ideally
    browser – all 3 columns 1 row – fixed width with a space between each column
    tablet – all 3 columns 1 row fixed width, with a space between columns
    phone – wrapped 1 column, 3 rows

    Chatgpt 4o has gotten me so far but not all the way.

    /* Pricing rows tables pricing page */
    #top .pricing-table li.avia-pricing-row {
    border: none;
    border-radius: 20px 20px 0 0; /* Rounded top corners */
    }

    .avia-pricing-table-container .pricing-table > li:last-child {
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    }

    #top .pricing-table .avia-table tr {
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add drop shadow */
    }

    /* Align text to the left in all columns of the pricing table except heading and pricing rows */
    .pricing-table-wrap li:not(.avia-heading-row):not(.avia-pricing-row) {
    text-align: left;
    font-size: 16px; /* Set font size */
    background-color: #ffffff !important; /* Force white background */
    padding-left: 20px; /* Add left padding */
    }
    <<<————————————————>>>
    This is the bit that is supposed to fix the width of the columns

    /* Container for the pricing table */
    .pricing-table-wrap {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap */
    width: 100%; /* Full width container */
    }

    /* Each column in the pricing table */
    .pricing-table-wrap > ul {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    flex: 0 0 400px; /* Set fixed width for each column */
    box-sizing: border-box; /* Include padding and border in width */
    }

    /* Media query for screens between 768px and 989px */
    @media (max-width: 989px) {
    .pricing-table-wrap > ul {
    flex: 0 0 50%; /* Each column takes 50% width */
    max-width: 50%;
    }
    }

    /* Media query for screens below 768px */
    @media (max-width: 768px) {
    .pricing-table-wrap > ul {
    flex: 0 0 100%; /* Each column takes 100% width */
    max-width: 100%;
    }
    }

    Can you help fix the width of the 3 columns to the 3 breakpoints.

    Tks!

    • This reply was modified 1 year, 9 months ago by Jambar.
    Sandy
    Participant

    I’ve added button shortcode to the footer > widget > Custom HTML object. However the button doesn’t match the other website’s buttons, specifically the button colour, the text font size, the padding around the text, and the button corner radius.

    I used this code:
    [av_button label='Text' link='manually,http://' link_target='' size='large' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#9537e7' custom_font='#ffffff' av_uid='av-5obiu2i']

    What’s the correct code to get a matching button?

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field, it will make the icon larger and center vertically:

    .iconbox_left .iconbox_content {  
    	display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: 1fr;
      grid-auto-columns: auto 1fr;
      gap: 0px 0px;
      grid-auto-flow: column;
      align-items: center;
      justify-content: center;
    }
    .iconbox_left .iconbox_content .entry-content-header .iconbox_icon {
        height: 60px;
        width: 60px;
        font-size: 40px;
        top: 0;
        left: 0;
        align-content: center;
    }
    .iconbox_left .iconbox_content .entry-content-header {
      justify-self: center;
    }
    .iconbox_left .iconbox_content .iconbox_content_container p {
    	margin-top: 0;
    }

    Best regards,
    Mike

    Thank you!

    1 – I’m looking for vertically centred icon to content text. Changing to ‘display icon above title’ horizontally centres them instead.

    2 – The Styling > Font Sizes panel has two font sizing options: title text and content text. There is no icon size option.

    3 – Great info, thanks.

    Hey Tanja,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the submit button in the footer widget:

    #footer .field-wrap>div input[type=checkbox], #footer .field-wrap button, #footer .field-wrap input[type=button], #footer .field-wrap input[type=submit] {
        width: auto;
        border-radius: 3px;
        padding: 10px;
        font-size: 16px;
        text-decoration: none;
        display: inline-block;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        margin: 3px 0;
        line-height: 1.2em;
        position: relative;
        font-weight: 400;
        text-align: center;
        max-width: 100%;
        color: var(--enfold-alternate-color-button-font);
        border-color: var(--enfold-alternate-color-button-border);
        background-color: var(--enfold-alternate-color-primary);
        min-width: 180px;
    }

    Best regards,
    Ismael

    Hey Tanja,

    Thank you for the inquiry.

    1.) You can adjust the style of the Widget Links element in the Enfold > Advanced Styling panel, or use the following css code to manually increase the font size.

    #footer .widget_nav_menu a {
        font-size: 2em;
    }

    2.) Which widget title are you trying to adjust? If you need to adjust the title of the menu widget, use this css code:

    #footer #nav_menu-2 h3.widgettitle {
        color: red;
    }

    Best regards,
    Ismael

    Hey Tanja,

    Thank you for the inquiry.

    1.) Try to set the Styling > General Styling > IconBox Styling to the last option (Display icon above title).

    2.) To increase the font size, go to the Styling > Font Sizes panel, then adjust the element settings accordingly.

    3.) You can upload monocolored fonts from fontello or flaticon using the Iconfont Manager. Please check the documentation below for more info: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    Sandy
    Participant

    How do you make the font size larger in the footer widget menu, without impacting any other text?

    How do you change the font colour in only one footer widget title? For example, only the title of the third column.

    Hi,
    So… this is not where I would create a template (even if it literally says “template”) because there seems no way to simply make a copy of the standard-template that already has everything configurated the way we want it?
    What I am looking for
    Did not work with “img”-Button to put it in the post, so here’s the link to the images

    I thought if I add all the elements to the template it will be available in every template. But it seems, that “template” isn’t a template after all *hahahah*. I did not work with the Avia Layout Architect yet, because I haven’t found out, why the whole layout looks completely different (no title, no category, different font size, no author…..)
    Avia vs. Standard Editor
    Did not work with “IMG”-Button to put it in the post, so here’s the link to the images

    Where do I find the settings to make it appear the same as with Standard Editor (especially show Title, author, date etc…?)

    • This reply was modified 1 year, 9 months ago by szenemagazin.
    • This reply was modified 1 year, 9 months ago by szenemagazin.
    #1445283

    Hey xfacta,

    Thank you for the inquiry.

    Please add this css code to adjust the font size of the category heading:

    #top.archive.category #wrap_all .all_colors .post-entry h2.post-title.entry-title {
        font-size: 48px;
    }

    You can also just the style of the h2 element in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    #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, 10 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');
Viewing 30 results - 661 through 690 (of 18,726 total)