Viewing 30 results - 751 through 780 (of 18,702 total)
  • Author
    Search Results
  • Thank you, the problem is that the ol already has a class specified, “class=”has-white-color has-text-color has-background has-link-color has-medium-font-size”. Adding a second class creates an error. Deleting the default class while adding the new class also creates the same error: This block contains unexpected or invalid content.

    #1437211

    Thank you, I adjusted the password in the post! It was a small error!

    I would like to decrease the size of the font of the grid. I just used your code and applied it to the advanced style section… I didnt work.

    I don’t know how to upload the screenshot here…

    the portfolio grid is displayed on the “start” page.

    #1437206

    Hey MiaShia,

    Thank you for the inquiry.

    We encountered an error when we tried to access the site. The password for the specified username is incorrect.

    Fehler: Das eingegebene Passwort für die E-Mail-Adresse REDACTED@gmail.com ist nicht korrekt. Passwort vergessen?
    

    Please check the info provided or post an alternative account. In the meantime, please provide a screenshot of the element that you’d like to adjust.

    If you want to adjust the font size of the portfolio gird title, please use this css code.

    #top #wrap_all .all_colors h3.grid-entry-title {
        font-size: 30px;
        font-weight: normal;
    }
    

    Or edit the h3 element in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    #1437180
    MiaShia
    Participant

    I adjusted the password! thank you!
    _________
    Hello,

    can you please help me with this. I can’t seem to find the setting, where I can decrease the size of the “title” of the portfolio item.
    It also cannot be adjusted in the advanced styling section.

    I want to decrease the size of the title shown below the portfolio items.

    The portfolio raster im using is on the “START” page and I made it a saved template and am reusing it on the page “Dekonditionierung deines Unterbewusstseins”

    Please help! Thank you so much!

    Martina

    • This topic was modified 1 year, 10 months ago by MiaShia.
    #1437002

    In reply to: Count up function

    Hi,
    Glad to hear that you find this helpful, thanks to Guenni007 for pointing out that the needed css may not always be loaded correctly, so I added the css into the shortcode and I changed the date attribute to include a time so you can better choose a start date & time. I also added a format attribute so you can choose what will show, like the “Smallest time unit” and “Largest time unit”
    So the shortcode to use on the page is now like this: [custom_countup date=”2024-03-01 00:00:00″ format=”weeks,days,hours,minutes,seconds” color=”#000″ background=”#f8f8f8″] you can remove the time units that you don’t want to show.
    Enfold_Support_5035.jpeg
    But please note that if you only show hours & days, the day element will only show up to 7 days even if you have the week element hidden, so you will not see “13” days, the same is for the calculation on all of the elements. This is the new code:

    function wp_custom_countup_shortcode($atts) {
        $a = shortcode_atts(array(
            'date' => '2020-01-01 00:00:00',
            'color' => 'black',
            'background' => 'white',
            'format' => 'weeks,days,hours,minutes,seconds', 
        ), $atts);
    
        $uid = uniqid('countup_');
        wp_enqueue_script('jquery');
    
        $formatParts = array_map('trim', explode(',', $a['format']));
        $htmlParts = array();
    
        foreach ($formatParts as $part) {
            if (in_array($part, ['weeks', 'days', 'hours', 'minutes', 'seconds'])) {
                $htmlParts[] = "<span class='av-countdown-cell av-align-center' style='color: {$a['color']};'><span class='av-countdown-cell-inner' style='background-color: {$a['background']};'><span class='av-countdown-time {$part}'></span><span class='av-countdown-time-label'>" . ucfirst($part) . "</span></span></span>";
            }
        }
    
        $html = "<div id='{$uid}' class='av-countdown-timer-inner'>" . implode("\n", $htmlParts) . "</div>";
    
        $serverTimeAtPageLoad = current_time('timestamp', true) * 1000;
    
        $jsParts = [];
        foreach ($formatParts as $part) {
            $jsParts[] = "'{$part}': Math.floor(" . ($part == 'weeks' ? "distance / (1000 * 60 * 60 * 24 * 7)" : ($part == 'days' ? "(distance % (1000 * 60 * 60 * 24 * 7)) / (1000 * 60 * 60 * 24)" : ($part == 'hours' ? "(distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)" : ($part == 'minutes' ? "(distance % (1000 * 60 * 60)) / (1000 * 60)" : "(distance % (1000 * 60)) / 1000")))) . ")";
        }
    
        $html .= "<script>
                    jQuery(function($) {
        var countUpDate = new Date('{$a['date']}').getTime();
        var serverTimeAtPageLoad = {$serverTimeAtPageLoad};
        var x = setInterval(function() {
            var now = new Date().getTime();
            var elapsedTime = now - serverTimeAtPageLoad;
            var serverNow = serverTimeAtPageLoad + elapsedTime;
            var distance = serverNow - countUpDate;
    
            var days = Math.floor(distance / (1000 * 60 * 60 * 24));
            var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
            var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
            var seconds = Math.floor((distance % (1000 * 60)) / 1000);
    
            var weeks = Math.floor(days / 7);
            days -= weeks * 7; 
    
            var timeParts = {
                'weeks': weeks,
                'days': days,
                'hours': hours,
                'minutes': minutes,
                'seconds': seconds
            };
    
            Object.keys(timeParts).forEach(function(key) {
                $('#{$uid} .' + key).text(timeParts[key]);
            });
        }, 1000);
    });
    </script>";
    
        $html .= "<style>
        .av-countdown-timer-inner { display: table; width: 100%; table-layout: fixed; }
        .av-countdown-cell { display: table-cell; }
        body .av-align-center { text-align: center; }
        .av-countdown-cell-inner { display: block; vertical-align: baseline; border-style: solid; border-width: 1px; margin: 2px; padding: 20px; }
        .av-countdown-time { display: block; font-size: 40px; line-height: 1em; font-weight: 100; text-decoration: none; }
        .av-countdown-time-label { display: block; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; line-height: 1.65em; }
        @media only screen and (max-width: 767px) {
            .responsive .av-countdown-cell-inner { padding: 12px 7px; }
            .responsive .av-countdown-time { font-size: 30px; }
            .av-countdown-time-label { text-transform: none; }
        }
        @media only screen and (max-width: 989px) {
            .responsive .av-countdown-cell-inner { padding: 10px 10px; }
        }
        </style>";
    
        return $html;
    }
    add_shortcode('custom_countup', 'wp_custom_countup_shortcode');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    Hi,

    You can add this css code to adjust the width of the color section container on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #section-container-width .container {
        width: 80% !important;
        min-width: 80% !important;
      }
    }

    You may need to adjust the styles of the following elements on mobile view. Instead of adding the styles inline, assign a unique class name to the < span > tag and define the css rules separately. This should allow you to adjust the style of the element for different screen sizes.

    <span style="color: #ffffff; font-size: 34px; font-weight: 600; padding-left: 20%;">Online translation services</span>
    

    Best regards,
    Ismael

    #1436914

    Hey joschro,

    Thank you for the inquiry.

    Have you tried adjusting the color values in the Enfold > General Styling > Main Content tab? To adjust the default font size of the body text, go to the General Styling > Typography tab, then adjust the values of the Default Content Font Size.

    Best regards,
    Ismael

    #1436883

    Hi,
    Thanks for the login, I found that you had the font size set to 13px:
    Enfold_Support_5003.jpeg
    since the demo uses 16px, I changed it for you, please clear your browser cache and check and if you want it larger please adjust.

    Best regards,
    Mike

    #1436596

    Hey Eduardo,

    Thank you for the inquiry.

    1.) You can edit the Accordion element and adjust the colors in the Styling > Colors toggle.

    2.) To adjust the style of the toggler, you adjust can the values in this css rule:

    .js_active .toggler, .avia-admin-preview-container .toggler {
        padding: 9px 3px 9px 35px;
        line-height: 1.65em;
    }

    3.) You can also adjust the font styles in the Styling > Font Sizes toggle.

    Best regards,
    Ismael

    #1436580

    Hi,

    Thank you for the update.

    To adjust the left or right icon, you can use this css rule:

    #top .iconbox_left_content .iconbox_icon, #top .iconbox_right_content .iconbox_icon {
        width: 74px;
        height: 74px;
        font-size: 80px;
        line-height: 72px;
        border-style: solid;
        border-width: 1px;
        border-radius: 500px;
        text-align: center;
        margin-right: 22px;
    }

    You may need to remove the previous css code.

    .iconbox_icon[data-av_icon]:before {
        font-size: 50px!important;
    }
    

    Best regards,
    Ismael

    #1436527

    Thank you! I was using this code

    .iconbox_icon[data-av_icon]:before {
        font-size: 50px!important;
    }

    to make the icons larger for the icon box with the display icon on the left. How do I make the display icon on the left larger without effecting the display icon above?

    • This reply was modified 1 year, 10 months ago by khrntanya.
    #1436470

    Hey khrntanya,

    Thank you for the inquiry.

    The following css code overrides your modification:

    .iconbox_icon[data-av_icon]:before {
        font-size: 50px!important;
    }
    

    You might have added it in the Quick CSS field.

    Best regards,
    Ismael

    #1436435
    khrntanya
    Participant

    Hi, I having some trouble centering my top icon box. Ideally I would like the icon smaller and centered. This is the code I’m using which I found in your support threads.

    .iconbox_top .iconbox_icon {
    font-size: 30px!important;
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 42px;
    top: -35px;
    margin-left: -45px;
    }

    #1436233

    Hi,

    I set them all to 13px.

    The current font size is already set to 13px. Have you tried using a larger value? Please provide the login details in the private field so that we can check the settings properly.

    Best regards,
    Ismael

    #1436223

    I disabled both, seems it does not work. I open a new privacy brower to check site body site, no change, still smaller.
    I added below code to function.php:
    function year_shortcode() {
    $year = date(‘Y’);
    return $year;
    }
    add_shortcode(‘year’, ‘year_shortcode’);

    Hmm, Enfold > General Styling > Typography panel, I set “Default content font size”, whatever it is default, medium, or small, I set them all to 13px. But website body font size still is smaller.

    #1436206

    Hey omnicnc,

    Thank you for the inquiry.

    The default font size is currently set to 13px. Have you tried to temporarily disable the Enfold > Performance > File Compression settings? If this doesn’t work, try to manually adjust the font size in the Enfold > General Styling > Typography panel.

    Best regards,
    Ismael

    #1436196
    omnicnc
    Participant

    https://omniradtech.com/ This is my site, I did not change the font size setting after imported the theme 5.0 , that modern demo. But you can see that body text font size is smaller than the demo. I wanna it the same font size as demo. Could you help me? Thanks.

    Hey LoPld,
    For your first question, I believe what you want is to have the burger menu show until 1240px, if this is correct then your css is wrong. Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 768px) and (max-width: 1240px){
    .responsive #top .av-main-nav .menu-item-avia-special {
        display: block!important;
    }
    #top #header .av-main-nav > li.menu-item  {
      display: none!important;
    }
    .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
    }
    #top #header .av-main-nav > li#menu-item-search.menu-item  {
      display: block!important;
    }
    .av-main-nav-wrap {
        float: right;
    }
    }
    @media only screen and (min-width: 990px) and (max-width: 1240px){
    #top #header .av-main-nav > li#menu-item-search.menu-item  {
      display: block!important;
      line-height: 118px;
    }
    #top #header .av-main-nav > li#menu-item-search.menu-item a {
        line-height: 118px;
    }
    .responsive.html_mobile_menu_tablet #top #wrap_all .menu-item-search-dropdown > a {
        font-size: 24px;
        color: #e8c100;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1436069

    Hey Munford,
    Your css for 2em on mobile is working when I check, except for the first one that has it’s own css:

    #top .heliko .av-image-caption-overlay-center {
        font-size: 4em !important;
    }

    Try changing the hotspot animation in the element settings:
    Enfold_Support_4879.jpeg

    Best regards,
    Mike

    #1436050
    Munford
    Participant

    hi
    two questions:
    1 / I am using this css to change the font for my image captions, but it’s not working on mobile.

    .av-image-caption-overlay-center {
    font-family: 'Arial Black'!important;
    font-size: 2em;
    line-height: 1.3;
    }

    I have checked everything and can’t find the issue. I wanted to use my imported font ‘Archivo Black’ but that didn’t work at all.
    Can you see what the problem is?

    2 / I am using image hotspots on a few pages – is there a way to disable the bottom to top animation of the hotspots and text and just have them fade in?

    thanks
    Nancy

    • This topic was modified 1 year, 10 months ago by Munford.
    #1436029

    Hey iago26,

    1. You can set the transparent logo under Enfold->Theme options->Transparency Logo Options.
    2. I’m not sure what you are looking to achieve, but you could try to add your code in a Code Block element.
    3. You can set font sizes under Enfold->General Styling->Typography, or under Enfold->Advanced Styling.

    Best regards,
    Rikard

    #1436014
    satucker
    Participant

    working on https://shethrivespsych.com/
    I’d like to make the font larger for the masonry grid that appears half way down the home page under “What I can do for you”. I can’t seem to find where to edit the size/color of that text. I have tried several settings under Enfold>Advanced Styling but they don’t seem to affect the text.

    #1436006
    iago26
    Participant

    Good evening guys, I need your help.
    I’m working on the theme “Enfold Classic Restaurant Demo” and I can’t solve the following problems:
    1) although I changed the logo in the appropriate section, on the main page, in the top right corner, before the fade, the white enfold logo remains visible;
    2) I would like to ask if in the “easy slider” photo gallery that appears at the top of the home page it is possible to insert an html code block;
    3) I would like to increase the font size of all sections, including the footer.
    I thank in advance those who would like to help me.

    #1435717

    Hi,

    Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:

    #av-burger-menu-ul li a {
      font-size: 18px;
      color: red !important;
    }

    Best regards,
    Rikard

    #1435693

    Hi,

    Thank you for the inquiry.

    Have you tried adjusting the font size or typography settings in the Enfold > General Styling > Typography tab? You should be able to adjust the style of the heading elements (h1, h2 etc) for different screen sizes including mobile screens.

    Best regards,
    Ismael

    #1435681

    Hi,

    Thank you for the update.

    We’ve checked the modifications in the Quick CSS field and noticed that one of your css media queries is missing a closing tag or curly brace, which renders the rest of the css rules invalid.

    /* MASONRY GALLERY FONT SIZE AND COLOR */
    @media only screen and (min-width: 768px) {
    

    We didn’t try to adjust it because we are not sure which modifications are meant for desktop and which are intended for other screen sizes. Also, please make sure to remove duplicate css media queries such as

    @media only screen and (max-width: 767px) {
    

    You only require one instance of this per stylesheet.

    Best regards,
    Ismael

    #1435632

    btw. even if you are opening a media query – but have some other media querries inside that open and close correctly – a following closing bracket then have no effect.

    see here some code of your css ( those rules that are correct are erased here )

    @media only screen and (max-width: 767px) {
    	.responsive #top.page-id-472 .avia_responsive_table .avia-data-table tr:first-child th {
    		display: block;
    	}
    } 
    /**** closed too early ? ******/
    	.responsive #top.page-id-472 div .avia_responsive_table .avia-data-table td, 
    	.responsive #top.page-id-472 div .avia_responsive_table .avia-data-table th {
    		padding: 0;
    	}
    } /**** or an additional superfluous bracket  ******/
    
    @media only screen and (max-width: 767px) {
    	#top .avia-icongrid.av-flex-cells.av-break-989 .av-icon-cell-item {
    		flex: 1 1 100%;
    	}
    
    	.avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-front .avia-icongrid-inner, .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-flipback .avia-icongrid-inner {
    		padding: 0 3em;
    	}
    
    	.all_colors h3 {
    		line-height: 1.3; /* Adjust the value to increase or decrease spacing */
    	}
    
    	.keinspace span {
    		display: block; /* Ensure the span is treated as a block element */
    		margin-top: 0px; /* Adjust margin-top to reduce space */
    		font-size: 0.7em; /* Adjust the font size smaller */
    		color: #6F6571; /* Change the text color to grey */
    	}
    
    	.avia-cookie-consent {
    		width: 100%;
    		position: fixed;
    		background-color: #009BDD;
    		z-index: 999;
    		color: rgba(255,255,255,0.9);
    		padding: 1.1em;
    		text-align: center;
    		opacity: 1;
    		visibility: visible;
    		transition: all 0.3s ease-in-out;
    		overflow: hidden;
    	}
    
    	.avia-cookie-consent-button,
    	.avia-cookie-info-btn,
    	.avia-cookie-hide-notification,
    	.avia-button {
    		background-color: white !important;
    		color: black !important;
    	}
    
    /**** missing closing curly bracket ******/
    
    /***** some media querries inside here - that are correctly opend and close so the following closing has no effect to that before *******/
    
    .av-burger-menu-main.menu-item-avia-special {
    		display: block;
    	}
    }  /**** additional superfluous bracket  ******/
    
    

    It is therefore best to avoid nesting media queries and possibly combine the same ones.
    There are a lot of single @media only screen and (max-width: 767px) {

    #1435551

    .justify-text {
    text-align: justify;
    -webkit-hyphens: auto; /* For Safari */
    -moz-hyphens: auto; /* For Firefox */
    hyphens: auto; /* Standard */
    }

    #top .av-video-slide .avia-slide-wrap, #top .av-video-slide iframe {
    background: #fff;
    }

    .avia-icongrid-front,.avia-icongrid-flipback {
    border-radius: 100%;
    min-height: 300px;
    min-width: 300px;
    }

    .av-hriqo-df64f73a2229a5a484cc56fae9caca2e table tr th {
    width: 20%;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    background-color: #000000;
    padding: 8px;
    }

    @media only screen and (max-width: 767px) {
    #top .avia-icongrid.av-flex-cells.av-break-989 .av-icon-cell-item {
    flex: 1 1 100%;
    }
    }

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-472 .avia-data-table.avia_pricing_minimal tr {
    padding-bottom: 20px;
    }
    }

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-472 .avia_responsive_table .avia-data-table tr:first-child th {
    display: block;
    }
    }
    .responsive #top.page-id-472 div .avia_responsive_table .avia-data-table td, .responsive #top.page-id-472 div .avia_responsive_table .avia-data-table th {
    padding: 0;
    }
    }

    #top .av-82qhko-49fd44439e70710ba9259a5b8656603c .avia-data-table {
    border: 0;
    padding: 10;

    }

    div .avia-table {
    background: transparent;

    }

    #top.page-id-472 #main .main_color .avia-data-table * {
    border: none;
    background-color: #fff;
    font-size: 18px;
    text-align: left;
    }

    #top.page-id-472 .main_color .avia-data-table.avia_pricing_minimal th {
    color: #666666;
    width: 15%;
    }

    #top.page-id-472 .av-hriqo-df64f73a2229a5a484cc56fae9caca2e .avia-data-table td:before {
    display: none;
    }

    .av-hriqo-df64f73a2229a5a484cc56fae9caca2e table tr th {
    width: 20%;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    background-color: #000000;
    padding: 8px;
    }

    .avia-form-success {
    text-align: center;
    border-style: solid;
    border-width: 0px;
    padding: 20px 15px;
    line-height: 1.4em;
    border-radius: 2px;
    clear: both;
    Font-size: 14px;
    font-weight: normal;
    text-decoration: none,
    }

    .page-id-1331 input, .page-id-1331 textarea {
    border-color: #009BDD !important;
    }

    .input_checkbox_label {
    color: #6F6571 !important;
    }

    .responsive #top #av_section_4 .container {
    width: 100%;
    }

    @media only screen and (max-width: 767px) {
    #top #av_section_4 .avia-icongrid .av-icon-cell-item .avia-icongrid-flipback {
    padding: 0 3em;
    }
    }

    @media only screen and (max-width: 767px) {
    #top .avia-icongrid.av-flex-cells.av-break-989 .av-icon-cell-item {
    flex: 1 1 100%;
    }

    .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-front .avia-icongrid-inner, .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-flipback .avia-icongrid-inner {
    padding: 0 3em;
    }

    .all_colors h3 {

    line-height: 1.3; /* Adjust the value to increase or decrease spacing */
    }

    .keinspace span {
    display: block; /* Ensure the span is treated as a block element */
    margin-top: 0px; /* Adjust margin-top to reduce space */
    font-size: 0.7em; /* Adjust the font size smaller */
    color: #6F6571; /* Change the text color to grey */

    }

    .avia-cookie-consent {
    width: 100%;
    position: fixed;
    background-color: #009BDD;
    z-index: 999;
    color: rgba(255,255,255,0.9);
    padding: 1.1em;
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    overflow: hidden;

    }

    .avia-cookie-consent-button,
    .avia-cookie-info-btn,
    .avia-cookie-hide-notification,
    .avia-button {
    background-color: white !important;
    color: black !important;

    }

    @media only screen and (max-width: 767px) {

    /* Add your Mobile Styles here */
    #top #header .av-logo-container .av-main-nav>li.av-burger-menu-main {
    display: block;
    }
    }

    @media only screen and (min-width: 768px) {

    /* Add your Mobile Styles here */
    #top #header .av-logo-container .av-main-nav>li.av-burger-menu-main {
    display: none;
    }
    }

    #avia-menu .menu-item {
    display: none;
    }
    .av-burger-menu-main.menu-item-avia-special {
    display: block;
    }
    }

    .container_wrap {
    border-top-width: 0;
    }

    #scroll-top-link {
    display: none;
    }

    .avia_iconbox_title {
    font-size: 18px;
    color: #6F6571;
    }

    .avia_iconbox_title:hover {
    color: #009BDD; /* Set the font color on hover to blue */
    }

    #header_main .av-logo-container {
    margin-bottom: -14px;
    }

    #1435472

    Hi,
    When I check the red boxes on mobile they are the correct size based on the text font size, Please see the first screenshot in the Private Content area.
    If this is what you see than we can help adjust with css or you can follow your plan above that works for many people.
    But I want to ensure that you are not testing the mobile view on a desktop screen by making the screen smaller, if you test this way please ensure to reload the page, Please see the second screenshot in the Private Content area.
    If this is what you see then it is a testing error that real devices will not see, please let us know.

    Best regards,
    Mike

    HI there,
    after the tables initially performed well on Mobile and desktopview, they have now reverted back to the standard layout in desktop view. How could this happen? I have not touched the code for 2 weeks and have not looked at the page. Today suddenly the css for the Table view on desktop doesn’t take hold anymore. Is the handler not called this anymore? #top.page-id-472 .av-hriqo-df64f73a2229a5a484cc56fae9caca2e .avia-data-table

    It needs it be like this:
    1. no borders
    2. no grey background
    3. font sizes bigger, both 16px
    4. font in first column is blue
    5. all fonts in cells align left

    I suspect that the handler name somehow changed itself? can you please check? I would not like to go through adjusting the css again from scratch since it was so much hassle to get it right…

    Bets, Peter

    • This reply was modified 1 year, 11 months ago by ausgesonnen.
Viewing 30 results - 751 through 780 (of 18,702 total)