Tagged: ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #765939

    Hi there
    Ive tried using this css code to increase the size of the name/company text of the testimonial, but it doesn’t seem to be having any effect at all. Could someone please help me?

    `.avia-testimonial-subtitle {
    font-size: 24px !important;
    }

    #765949

    Hey Tim,

    Please, Id like to take a look on your site, may you share with me your website link thats occurring, please?

    Best regards,
    John Torvik

    #765950

    Thanks for the quick reply:

    website listed below

    #765957

    Hi,

    You need to add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS

    
    .avia-testimonial-name {
      font-size: 24px !important;
    }
    

    Best regards,
    John Torvik

    #765961

    Ive added that now, but it still doesn’t seem to have any effect at all?

    #766492

    Hi,

    Try this instead, it works when I test it in the browser. Don’t forget to clear your browser cache and reload after you have added it.

    strong.avia-testimonial-name {
        font-size: 20px !important;
    }

    Best regards,
    Rikard

    #767103

    Thanks,

    I have added that code, and have cleared the cache but the text is still not bigger? I have checked the website in chrome and in safari and it hasn’t taken effect? Not sure why this is happening, but maybe is there something in my other custom css that is interfering with it?

    
    .main_menu ul:first-child > li > a { font-size: 25px; }
    
    #top .social_bookmarks li a { font-size: 25px; }
    
    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Icon Label'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    
    strong.avia-testimonial-name {
       font-size: 20px !important;
    }
    
    #767157

    Hi,

    You need to put the codes in different files/locations, the css code should be added in Quick CSS (located in Enfold > Styling) or your custom css file like style.css of your child theme:

    .main_menu ul:first-child > li > a { 
        font-size: 25px; 
    }
    
    #top .social_bookmarks li a { 
        font-size: 25px; 
    }
    
    strong.avia-testimonial-name {
       font-size: 20px !important;
    }

    These codes should go to functions.php:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Icon Label'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    Best regards,
    Nikko

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.