Viewing 30 results - 2,371 through 2,400 (of 18,728 total)
  • Author
    Search Results
  • #1329229

    Oh sorry but I have just noticed that my others products pages are not displaying the same.

    This one for example : https://v99dqr23s6x.c.updraftclone.com/produit/testo-830/ or this one https://v99dqr23s6x.c.updraftclone.com/produit/testo-865/

    It is bizarre. Shouldn’t the code apply to all pages ? At this point the CSS that I have in place right now are a mix of Yigit and yours :

    a.add-request-quote-button.button {
    font-size: 12px;
    }
    .single-product .summary .cart {
    float: left;
    max-width: 140px;
    margin-top: 15px;
    }
    .single-product .yith-ywraq-add-to-quote {
    margin-top: 70px;
    }

    .single-product-summary a.add-request-quote-button.button {
    font-size: 12px;
    }

    Thank you

    #1329215

    Hi,
    Thank you for the link to your site and feedback, I’m not sure if you have Yigit’s css in place right now but the difference I see is the font size, the “add to basket” is 12px and the “request a quote” is 15.6px, try this css to match the font size:

    .single-product-summary a.add-request-quote-button.button {
        font-size: 12px;
    }
    

    2021-11-16_001.jpg
    at this point the buttons match if you consiter the text length, this doesn’t seem noticeable, but if you want the two to match you could reduse the padding a little like this

    .single-product-summary a.add-request-quote-button.button {
        font-size: 12px;
        padding: 15px 7px;
    }
    

    2021-11-16_002.jpg

    Best regards,
    Mike

    #1329124

    Hey,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    a.add-request-quote-button.button {
        font-size: 12px;
    }
    .single-product .summary .cart {
        float: left;
        max-width: 140px;
    }
    .single-product .yith-ywraq-add-to-quote {
        margin-top: 55px;
    }
    

    Best regards,
    Yigit

    #1328899

    In reply to: Need a little CSS Help

    Thank you, Mike. It’s close but I need to do away with the left padding. It’s not centered and it looks off.

    Is there a way to add the text under the button on the same <div>? I do like it closer and centered with respect to the button. I wonder why it wouldn’t pick up the CSS when I added the actual <div> code with Code. Was I supposed to select some additional option?

    This was the code I added to Code (it showed the button and the text perfectly but not the right colors):
    <div class=”avia-button-wrap avia-button-left avia-builder-el-4 el_after_av_textblock el_before_av_textblock ” title=”Play the MindCrowd Memory Test”><span class=”avia_iconbox_title”>TEST YOUR MEMORY</span>
    <p style=”font-size:13px;text-align:center;”>We respect your Privacy.</p></div>

    Can I remove the CSS I had added to the child theme’s stylesheet?
    /*padding left to text*/
    p.padleft {
    padding-left: 20% !important;
    }

    One more CSS question:
    There’s a padding inside of the cell 75px top not rendering on landscape mode on mobile. It does show on Desktop, and on Portrait Mobile but not on Mobile Landscape. So, the text is under the menu.

    Mobile Landscape

    I changed the break point for the top section hoping it would not be covered by the menu when I look at it on landscape mode on mobile, but it did not work. (It was Grid Row Mobile Breaking point > On Mobile Devices 767px or lower and now it is On Tablets > 989px or lower)

    Thank you in advance!!!

    Warmly,

    Havi
    If I add a white space 20px and select Hide on Desktop, It does not hide it on Desktop either and the screen also does not cover the full viewport on mobile landscape.

    #1328893

    Hi,
    Thank you for the link to your site and the explanation, for this one page /memory-care-learning-center/events/ page-id-2047
    we will use css to hide any masonry elements with the class tribe_events_cat-independent-living
    then we will use a jQuery script to check if no masonry elements are showing, and if so we will display a message.
    Please add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.page-id-2047 #av-masonry-1 .tribe_events_cat-independent-living {
    	display: none;
    }
    .nocat {
    	text-align: center;
        color: #fff;
        font-size: 20px;
    }

    Then add this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_nocat_script() { ?>
        <script>
    (function($) {
    var nocat = $('<div class="nocat">No Current Events</div>');
    if($('#top.page-id-2047 .av-masonry-entry').is(':hidden')){
    	$(nocat).appendTo('#av-masonry-1');
    }
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_nocat_script');
    

    Best regards,
    Mike

    #1328859

    but if you have that search on your main-navigation the magnifier symbol ( search ) is also on hamburger open visible !
    Maybe you only had to style the colors of that Search icon

    then you will not need anything else ? express your request a little more precisely.
    __________
    but if you want it like this: https://webers-web.info
    you can hide that custom link in your “non-hamburger” navigation by setting it to display none.
    Think of that custom class on that custom link:

    #avia-menu li.menu-search {
        display: none;
    }

    now we got a menu item search – to have the chance to write into that input field – the link on the item itself disturbs – we had to get rid of the href :
    this to child-theme functions.php:

    function remove_href_from_search_input(){
    ?>
    <script type="text/javascript">
    (function($) {
    	$('#header').on('click', '.av-main-nav-wrap', function() {
    			$('#av-burger-menu-ul .menu-search > a:first-of-type').removeAttr("href");
    	});	
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_href_from_search_input');

    on my testinstallation i got this in my quick css – but you had to adjust it to your settings and needs:

    #avia-menu li.menu-search {
    	display: none;
    }
    
    #av-burger-menu-ul li.menu-search a:hover {
    	background-color: transparent !important;
    }
    
    #av-burger-menu-ul li.menu-search a:hover {
    	opacity: 1 !important
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response {
    	margin-top: 30px !important;
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response  * {
    	color: #fff;
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response .av_ajax_search_content .av_ajax_search_title {
    	font-size: 16px
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response  .av_ajax_search_entry:hover .av_ajax_search_title {
    	letter-spacing:0.4px;
    	color: #004e7f
    }
    
    #av-burger-menu-ul li.menu-search .av_ajax_search_image {
    	background-color: #fff;
    	border-radius: 0;
    	color: #000 !important
    }
    #1328826

    Topic: Need a little CSS Help

    in forum Enfold
    havi
    Participant

    Hi guys,

    I am trying to tweak the CSS a bit. Have tried going into debug more (but what I want is not to pull the code) and I have been able to do this by adding code but the CSS from the stylesheets does not apply.

    Let me explain:

    I need a button left aligned and right under it a small message that reads “We respect your privacy.” If I add the button and the line one on each element, they show too far apart and I cannot center the Privacy text to the middle of the button. And it looks like this.

    Button and Privacy Text Separately Entered

    I tweaked the HTML on Chrome and by adding the code inside of the button <div> I get the result I want.

    Tweaked the HTML on Chrome

    See? It is right in the middle of the button and closer to it.

    This is the HTML code.

    <div class=”avia-button-wrap avia-button-left avia-builder-el-4 el_after_av_textblock el_before_av_textblock ” title=”Play the MindCrowd Memory Test”><span class=”avia_iconbox_title”>TEST YOUR MEMORY</span>
    <p style=”font-size:13px;text-align:center;”>We respect your Privacy.</p></div>

    If I add it as code, the button shows up with no color.

    Is there a way to achieve this? Where am I missing the mark?

    Thank you so much!

    Warm regards,

    Havi

    • This topic was modified 4 years, 4 months ago by havi. Reason: images were switched
    #1328560

    Hi,

    I checked your blog page but as I showed in my screenshot, I cannot see any issue. Font size is 16px.

    Best regards,
    Yigit

    #1328527

    Hi,

    1- I checked your pages however font size is 16px on those pages on my end. I attached a screenshot in private content field below. Please clear cache and refresh your page a few times.

    2- You can login on ThemeForest and then go to – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 to renew your support.

    Best regards,
    Yigit

    #1328491

    Hi,

    Please try this CSS instead:

    .avia-image-container .av-image-caption-overlay-center p {
      font-family: ‘colbycdbld’,Helvetica,Arial,sans-serif;
      font-size: 56px;
      line-height: 60px;
    }

    Best regards,
    Rikard

    #1328415

    Hi, I want the font spacing in the text, I tried this CSS but it didn’t work, the font size is big already, however it looks like this, kindly check the picture below. I want the 1st pic same with the 3rd pic .Can you help me regarding with this? Thank you

    .avia-image-container .av-image-caption-overlay-center p {
    font-family: ‘colbycdbld’,Helvetica,Arial,sans-serif;
    letter-spacing: 2.0px !important;
    font-size: 56px;

    }
    WAVC

    • This reply was modified 4 years, 4 months ago by WellStrategic.
    #1328245
    kazumakitajima
    Participant

    Hi,

    How do I change the font and font size of my burger navigation menu when open? I also want to change the white background to a black opaque background. Please provide me with assistance. I greatly appreciate it.

    #1328185

    Hi,

    Please try this CSS instead:

    .avia-image-container .av-image-caption-overlay-center p {
        font-family: 'colbycdbld',Helvetica,Arial,sans-serif;
        font-size: 56px;
    }

    Best regards,
    Rikard

    #1328164

    Hi Rikard,

    It works. Thank you
    However, I don’t know how to change the font size, 40 px is still a small font size. I want the 1st picture same the font size to the 2nd and 3rd picture. Do you have CSS for this? Kindly check the picture below. Thank you

    WANT TOURS

    #1328062

    Hi,
    Thank you for the login, this issue with this css:

    .tribe-events-content ol,.tribe-events-content p,.tribe-events-content ul,.tribe-common .tribe-common-b2 {
        font-family: Open Sans:400,600,Helvetica,Arial,sans-serif;
        font-size: 15px;
    }

    is that the font Open Sans should have quotes around it and not include the numbers like this:

    .tribe-events-content ol,.tribe-events-content p,.tribe-events-content ul,.tribe-common .tribe-common-b2 {
        font-family: 'Open Sans',Helvetica,Arial,sans-serif;
        font-size: 15px;
    }

    I couldn’t find where this was loading from to correct, I think it’s from the plugin, but this css should correct, try adding this css to your child theme:

    #tribe-events-pg-template .tribe-events-content ol,#tribe-events-pg-template .tribe-events-content p,#tribe-events-pg-template .tribe-events-content ul,#tribe-events-pg-template .tribe-common .tribe-common-b2 {
        font-family: 'Open Sans',Helvetica,Arial,sans-serif;
        font-size: 15px;
    }

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

    Best regards,
    Mike

    #1327863

    In reply to: Change logo

    And where did you replace on Enfold Options that logo ?
    for transparency headers : header – transparency options – Transparency Logo
    or for non transparent Headers on : Theme Options – Logo

    ________

    you can use the logo subtext for that in child-theme functions.php
    f.e. showing bloginfo name ( that is the text you insert on apearance – customise for Site Title )

    function kriesi_logo_addition($sub){
      $sub .= "<span class='logo-title'>";
      $sub .= get_bloginfo( 'name', 'display' );
      $sub .= "</span>";
      return $sub;
    }
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');

    OR use any text you like in additon:

    
    function kriesi_logo_addition($sub){
      $sub .= "<span class='logo-title'>";
      $sub .= "Your LogoText";
      $sub .= "</span>";
      return $sub;
    }
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');

    Then on quick css:

    .logo img, .logo svg {
      display: none;
    }
    
    .logo .subtext .logo-title {
      font-size: 36px;
      font-weight: 700;
      color: #fff
    }
    /*** if you need different colors on your text after scrolling on shrinking header ***/
    .header-scrolled .logo .subtext .logo-title {
      color: #000
    }

    if you do not have shrinking header you can differ between transparent and non transparent header on that header class: av_header_transparency

    • This reply was modified 4 years, 4 months ago by Guenni007.
    #1327748
    andrea_werkhoven
    Participant

    Hi,
    I would like to remove the date from my portfolio items in the footer section. I searched the threads and found that I should add this piece of code in the Quck CSS of the General styling part.
    #footer .news-time {
    display:none !important;

    This works allright, but the boxed layout changes to half its size. The color and font size changes in the header section as well. Do you know how to solve it?
    Hope to hear from you
    Best regards,
    andrea

    FOARK
    Participant

    hello. I used enfold spa theme very well. :-)

    I have a few questions that cannot be found.

    Is it possible to adjust the font size and thickness of the menu names in the burger menu on the right?

    And I want to change the background color of the catalog of menu prices to white, but I don’t know where to change it.

    Thanks in advance for the reply!

    #1327536
    wfosterphoto
    Participant

    We use a custom HTML code widget for the sidebar (in several locations on the site). The content is repeating/duplicating but the code is only identified once. Two separate widgets are operating in the same fashion.

    HTML content example:
    <html>
    <head>
    <style>
    a:link {
    color: blue;
    background-color: transparent;
    text-decoration: none;
    }
    a:visited {
    color: blue;
    background-color: transparent;
    text-decoration: none;
    }
    a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
    }
    a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
    }
    </style>
    <h5>CATEGORIES</h5>
    <table>
    <tbody>
    <tr>
    <td style=”border-color: #ffffff; width: 2px; background-color: #ffffff;”>[av_font_icon icon='ue875' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='middle' color='#25b8f8' admin_preview_bg=''][/av_font_icon]</td>
    <td style=”border-color: #ffffff; width: 5px; background-color: #ffffff;”><span style=”color: #383e45;”></span><span style=”font-size: large;”><h6><bold>News</bold></h6></span></td>
    </tr>
    <tr>
    <td style=”border-color: #ffffff; width: 10px; background-color: #ffffff;”>[av_font_icon icon='ue875' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='middle' color='#25b8f8' admin_preview_bg=''][/av_font_icon]</td>
    <td style=”border-color: #ffffff; width: 40px; background-color: #ffffff;”><h6>Training</h6></td>
    </tr>
    <tr>
    <td style=”border-color: #ffffff; width: 2px; background-color: #ffffff;”>[av_font_icon icon='ue875' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='middle' color='#25b8f8' admin_preview_bg=''][/av_font_icon]</td>
    <td style=”border-color: #ffffff; width: 5px; background-color: #ffffff;”><span style=”color: #383e45;”></span><span style=”font-size: large;”><h6><bold>Updates</bold></h6></span></td>
    </tr>
    <tr>
    <td style=”border-color: #ffffff; width: 10px; background-color: #ffffff;”>[av_font_icon icon='ue875' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='middle' color='#25b8f8' admin_preview_bg=''][/av_font_icon]</td>
    <td style=”border-color: #ffffff; width: 40px; background-color: #ffffff;”><span style=”color: #383e45;”></span><span style=”font-size: large;”><h6>Action Required</h6></span></td>
    </tr>
    </tbody>
    </table>
    </head>
    </html>

    #1327290

    Hi,
    thanks but there is no if(isset($avia_config[‘use_child_theme_functions_only’])) return; in the functions.php file.

    Se all the code below:
    <?php

    /**
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    *
    * Remove the comments before or around the sample functions and code to use theme.
    * @link http://kriesi.at/documentation/enfold/using-a-child-theme/
    */

    /**
    * Add filter to add or replace Enfold ALB shortcodes with new folder contents
    *
    * Note that the shortcodes must be in the same format as those in
    * enfold/config-templatebuilder/avia-shortcodes
    *
    * @link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
    */

    add_filter(‘avia_load_shortcodes’, ‘avia_include_shortcode_template’, 15, 1);
    function avia_include_shortcode_template($paths)
    {
    $template_url = get_stylesheet_directory();
    array_unshift($paths, $template_url.’/shortcodes/’);

    return $paths;
    }

    /**
    * Turn on Custom CSS Class field for all Avia Layout Builder elements
    * @link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    */
    //add_theme_support(‘avia_template_builder_custom_css’);

    /**
    * Remove the Import dummy data button from theme options
    * @link http://kriesi.at/documentation/enfold/remove-the-import-dummy-data-button/
    */
    //add_theme_support(‘avia_disable_dummy_import’);

    /**
    * Enable Avia Layout Builder Debug
    * @link http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    */
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug() {
    return “debug”;
    }

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter(“kriesi_backlink”,”new_nolink”);
    function new_nolink(){
    $kriesi_at_backlink = “”;
    return $kriesi_at_backlink;
    }

    add_filter( ‘avf_modify_thumb_size’, ‘enfold_customization_modify_thumb_size’, 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size[‘masonry’] = array(‘width’=>1500, ‘height’=>250);
    $size[‘entry_without_sidebar’] = array(‘width’=>1210, ‘height’=>1210 , ‘crop’ => false);
    return $size;
    }

    function av_title_sc( ){
    $output = “<h1 class=’page-title’>”. get_the_title() .”</h1>”;
    return $output;
    }
    add_shortcode( ‘av_page_title’, ‘av_title_sc’ );

    function av_author_sc(){
    $current_user = wp_get_current_user();
    $output = “<h6 class=’ra-author’>AN ARTICLE BY ” . $current_user->user_firstname . “</h6>”;
    return $output;
    }
    add_shortcode(‘av_author’,’av_author_sc’);

    function av_excerpt( ){
    $excerpt = get_the_excerpt( $post );
    $output = “<span class=’related-excerpt’>”.$excerpt.”</span>”;
    return $output;
    }
    add_shortcode( ‘av_post_exc’, ‘av_excerpt’ );

    function avia_post_created(){
    $output = “<span class=’post-date’>”. get_the_date( $format, $post_id ) .”</span>”;
    return $output;
    }
    add_shortcode( ‘avia_created’, ‘avia_post_created’ );

    add_action( ‘after_setup_theme’, ‘ava_enfold_builder_layout_mod’ );
    function ava_enfold_builder_layout_mod(){
    add_filter(‘avf_builder_elements’, ‘avf_enfold_builder_layout_settings_mod’);
    }

    function avf_enfold_builder_layout_settings_mod($elements)
    {
    $counter = 0;
    foreach($elements as $element)
    {

    // Layout > Header visibility and transparency
    if($element[‘id’] == ‘header_transparency’) {
    /**
    *
    * Available Options
    * No transparency =
    * Transparent Header = ‘header_transparent’
    * Transparent Header with border = ‘header_transparent header_with_border’
    * Transparent & Glassy Header = ‘header_transparent header_glassy ‘
    * Header is invisible and appears once the users scrolls down = ‘header_transparent header_scrolldown ‘
    * Hide Header on this page = ‘header_transparent header_hidden ‘
    * MOD: Set the Layout > Header visibility and transparency settings to “Hide both”Header is invisible and appears once the users scrolls down”
    *
    **/
    $elements[$counter][‘std’] = ‘header_transparent’;
    }

    $counter++;
    }
    return $elements;
    }

    function av_single_fo(){
    ?>
    <script>
    var header = jQuery(“.single-post #main .avia-section .content”);
    jQuery(window).scroll(function() {
    var scroll = jQuery(window).scrollTop();

    if (scroll >= 250) {
    header.addClass(“single-header”);
    } else {
    header.removeClass(“single-header”);
    }
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘av_single_fo’);

    add_filter( ‘style_loader_src’, ‘t5_remove_version’ );
    add_filter( ‘script_loader_src’, ‘t5_remove_version’ );

    function t5_remove_version( $url )
    {
    return remove_query_arg( ‘ver’, $url );
    }

    function raboff_custom_checkbox(){
    ?>
    <script>

    jQuery(window).load(function(){
    jQuery(‘h2.avia-caption-title’).after(‘<p class=”close-caption”> </p>’);
    jQuery( “.close-caption”).click(function() {
    var closeTheCap = jQuery(this).closest(“.slideshow_align_caption”);
    closeTheCap.hide(“slow”);
    });
    });

    jQuery(window).scroll(function(){
    var numberNotChecked = jQuery(‘fieldset.alacarte-form input:checkbox:not(“:checked”)’).length;
    console.log(numberNotChecked, “Hello, world!”);

    if (numberNotChecked >= 16) {
    jQuery(“.one-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.one-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 15 && numberNotChecked >= 8 ) {
    jQuery(“.two-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.two-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 7 ) {
    jQuery(“.three-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.three-day”).removeClass(“p-highlight”);
    }

    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘raboff_custom_checkbox’);

    function avia_add_custom_social_icon($icons) {
    $icons[‘Turning Torso’] = ‘turning_torso’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    #1327178
    eisme
    Participant

    Hello,

    Please visit our website to see what is the problem, basically I encountered the following.
    – The website reverted back to the old ENFOLD logo and I could not change from the Dashboard.
    – Text in the footer socket also reverted back to ENFOLD
    – Theme color changed to Green (previous color was a customized shades of blue)
    – Font and Sizes are messed up.
    – Related Pages at the bottom of each webpages suddenly appeared.

    #1327143

    Hi,
    Ok, looking at my screenshot with the red boxes, the first box is the text in the 4/5 column, the other boxes are the full columns,
    there is no difference in font size or line-height between these, do you see a difference?

    Best regards,
    Mike

    #1327140

    Hi,
    The 3px padding on the li is shown here in green:
    2021-10-30_009.jpg
    but I thought it was the paragraph font size that you were talking about, please see the screenshot below I put red boxes around the paragraphs that I thought you were comparing.

    Best regards,
    Mike

    #1327137
    This reply has been marked as private.
    #1327135
    This reply has been marked as private.
    #1327129

    Hi,
    Thanks for the feedback, when I check the page for tablet 768px all of the paragraph text is: font-size: 15px, line-height: 24.75
    this includes the lower 5 1/1 columns and the top 4/5 column, the only one that is different is the second text block in the top 4/5 column, the one you manually made 20px, changing the font-size also changes the line-height to 33px
    Are you referring to the list items below? While they are also using font-size: 15px, line-height: 24.75
    they also have a top & bottom padding of 3px which makes the line-height look more.
    I’m using Chrome on Windows in dev mode, I don’t have a iPad, are you seeing this on an iPad? Can you also see this with a desktop Chrome in dev mode?

    Best regards,
    Mike

    #1327125
    This reply has been marked as private.
    #1327120

    Hey pamk21,
    Thank you for the link to your site but I don’t think I understand, I tried creating a test page with different columns and viewed on mobile but the font size was the same for each, please adjust the test page below so I can see this error and investigate further.

    Best regards,
    Mike

    #1327047
    pamk21
    Participant

    Hi, I have tried tiresome to find an easy fix without complicating the website. Here is my issue:

    The font size on mobile (mostly tablet in portrait and landscape) changes size when I go to a column less than 1. So if I go to 4/5, 3/4, etc. the font size changes. I would rather not have to change every column to adjust to a portable piece. When I did try that, however, I noticed the leading was not running the same compared to where I did not make this adjustment. Does this make sense and is there an easy fix?

    I tried placing columns and text boxes in a color section, etc.

    Thank you!

    #1327029

    Hey Patrick,

    Thank you for the notification.

    We will post the changes as soon as possible. For now, you can check them below.

    feature: ALB columns reverse or individual resort order when switching to fullwidth on mobile devices
    feature: ALB gridrow reverse or individual resort orderof cells when switching to fullwidth on mobile devices
    feature: theme option “Transparency Menu Color On Hover”
    feature: ALB video element option to show fullscreen button for HTML5 videos

    fixed: missing comma in CSS for mobile and svg makes svg huge
    fixed: button CSS top border issue on :active – removed !important in button.css
    fixed: Option Remove query string from static resources breaks invalidation of post css files – option willl be ignored for these files
    fixed: ALB Textblock custom element lockable custom CSS class missing
    fixed: fullwidth submenu alignment ignored for mobile button
    fixed: undefined constant THEMENAME in Mailchimp Newsletter Signup widget
    fixed: typography font size not applied in block editor in frontend
    fixed: ALB masonry gallery lightbox title not corresponding to options settings for flexible masonry
    fixed: ALB magazine category sort buttons break frontend when no entries are found
    fixed: svg logo broken when svg tag in multiple lines
    fixed: svg logo not displayed for non logged in users
    fixed: italien translation breaking selectbox in ALB Image Hotspot tooltip location

    tweak: add missing schema.org markup to section background videos and slideshow videos
    tweak: accessibility support:

    added: Accessibility Tab to Theme Extensions Page
    added: tab key access support to main menu with submenus and megamenu
    added: visual appearance with keyboard access to menus (focus now equivalent to mouse hover effects)
    added: attributes role=”menuitem” tabindex=”0″ to menu items
    added: started support for plugin “One Click Accessibility” ( https://wordpress.org/plugins/pojo-accessibility/ )
    added: started support for plugin “WP Accessibility” ( https://wordpress.org/plugins/wp-accessibility/ )
    tweak: remove “:” when empty label text from contact form emails
    tweak: extended date filter to “last xxx days/weeks/month/years” for ALB elements:
    Blog
    Magazine
    Masonry
    Portfolio
    Post Slider
    Accordion Slider
    Featured Image Slider
    added: filter ‘avf_social_media_icon_display_name’ – change tooltip display name of icon
    added: filter ‘avf_form_mail_label’ – allows to change label text on E-Mail of a contact form
    added: filter ‘avf_wp_accessibility_outline_width’ – change hardcoded plugin value for focus caret
    added: filter ‘avf_wp_accessibility_outline_style’ – change hardcoded plugin value for focus caret

    Following elements have been updated to support post-css file:

    Dropcap 1 (Big Letter)
    Dropcap 2 (Colored Background)
    Fullwidth Sub Menu
    Grid Row + Grid Cells
    OSM – Leaflet Map
    Post Metadata
    Search
    Social Buttons
    Tabs
    Team
    Textblock
    Timeline
    Video
    Updated: LayerSlider Version 6.11.9

    updated: French language files fr_FR (version 4.8.6.4, provided by comkapi – (Email address hidden if logged out) )
    updated: Dutch language files nl_NL (version 4.8.7 provided by EZWebdesign – Roger Hoen )
    updated: Italian language files it_IT (version 4.8.7, provided by BigBatT – (Email address hidden if logged out) )
    updated: sync all language files version 4.8.7

    Best regards,
    Ismael

Viewing 30 results - 2,371 through 2,400 (of 18,728 total)