Viewing 30 results - 6,841 through 6,870 (of 18,743 total)
  • Author
    Search Results
  • #972634

    Hi,

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

    @media only screen and (max-width: 990px) {
    #top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
        font-size: 1em;
    }
    }

    Best regards,
    Rikard

    #972600

    Hi,
    Can you please include a admin login in the private content area so we can fix the error in your button, also how do you want to change the links in your popup, font size, color?

    Best regards,
    Mike

    #972503

    Hey Stefano,

    Try the following instead:

    #av_product_description h1 p{
    font-size:12px!important;
    }

    Best regards,
    Jordan Shannon

    #972341
    Oli
    Participant

    Hi,

    after Enfold 4.4.1 upgrade, all av_button labels with an apostrophe (so we use delimiters double quote) has been changed like this :

    Before :
    [av_button label="Bilan : 4 ans de MOOC à l'IMT" link='manually,https://www.imt.fr/bilan-mooc/' link_target='' size='x-large' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' admin_preview_bg='' av_uid='av-222kpxz']

    After :
    [av_button label='Bilan : 4 ans de MOOC à l'IMT' link='manually,https://www.imt.fr/bilan-mooc/' link_target='' size='x-large' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' admin_preview_bg='' av_uid='av-222kpxz']

    Of course, the buttons are displayed with a label “Click Me” and we have to, manually, changed all these buttons to use double quote for delimiters for these labels… Hard work.

    Could you tell me more about this problem ?

    Best regards,
    Olivier.

    • This topic was modified 7 years, 10 months ago by Oli.
    #972239
    goodpixel
    Participant

    Do not work http://www-exsus.hosts.cx/categoria-prodotto/scarpe-uomo-pelle-su-misura/
    #av_product_description p {font-size:14px!important;}

    #971691

    In reply to: Enfold Showcase

    guys i am trying to use tinymce for editing text in enfold.

    Just say i have a paragraph of text and i want to increase the font of a word and turn is red or whatever. none of the tinymce controls are showing for my text box..

    there must be SOMETHING i can use that will increase or decrease font size and colour ?

    #971509

    Hi,

    Thanks for that. I’m not sure if it will override, but please try this in Quick CSS:

    .tagcloud a {
        font-size: 15px !important;
    }

    Best regards,
    Rikard

    #971479

    Hi,
    The dev team has released this fix today, I have tested on my localhost and it seems to be working good.
    The zip file in the Private Content area contains 3 files to go to these paths on your webhost:
    \wp-content\themes\enfold\functions-enfold.php
    \wp-content\themes\enfold\functions.php
    \wp-content\themes\enfold\js\avia-snippet-image-copyright.js

    These use the same css you had in place:

    small.avia-copyright {
        display: block !important;
    	line-height: 13px !important;
    	font-size: 13px !important
    }
    small.avia-copyright a {
        display: inline-block !important;
    }

    Please let us know how this works for you.

    Best regards,
    Mike

    #971403

    Hey!
    I created a custom shortcode based on the toggles shortcode for you:

    
    <?php
    /**
     * Featurebox
     * 
     * Shortcode which creates a text element wrapped in a div
    */
    if ( ! defined( 'ABSPATH' ) ) {  exit;  }    // Exit if accessed directly
    
    if ( !class_exists( 'avia_sc_olicci_featurebox' ) )
    {
        class avia_sc_olicci_featurebox extends aviaShortcodeTemplate
        {
            static $toggle_id = 1;
            static $counter = 1;
            static $initial = 0;
            static $tags = array();
            static $atts = array();
    
            /**
             * Create the config array for the shortcode button
             */
            function shortcode_insert_button()
            {
    			$this->config['self_closing']	=	'no';
    			
                $this->config['name']           = __('Feature Box', 'avia_framework' );
                $this->config['tab']		= __('Content Elements', 'avia_framework' );
                $this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-contentslider.png";
                $this->config['order']		= 70;
                $this->config['target']		= 'avia-target-insert';
                $this->config['shortcode'] 	= 'av_olicci_featurebox';
                $this->config['shortcode_nested'] = array('av_olicci_featureitem');
                $this->config['tooltip'] 	= __('Create an olicci Feature Box Element', 'avia_framework' );
                $this->config['disabling_allowed'] = true;
            }
    
    		function admin_assets()
    		{
    			$ver = AviaBuilder::VERSION;
                wp_enqueue_script('avia_tab_toggle_js' , AviaBuilder::$path['assetsURL'].'js/avia-tab-toggle.js' , array('avia_modal_js'), $ver, TRUE );
    		}
    			
            function extra_assets()
    			{
    				//load css
    				wp_enqueue_style( 'avia-module-toggles' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/toggles/toggles.css' , array('avia-layout'), false );
    				
    					//load js
    				wp_enqueue_script( 'avia-module-toggles' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/toggles/toggles.js' , array('avia-shortcodes'), false, TRUE );
    
    			}
            
    
            /**
             * Popup Elements
             *
             * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
             * opens a modal window that allows to edit the element properties
             *
             * @return void
             */
            function popup_elements()
            {
                $this->elements = array(
    
                        array(
                                "type"  => "tab_container", 'nodescription' => true
                            ),
                            
                        array(
                                "type"  => "tab",
                                "name"  => __("Content" , 'avia_framework'),
                                'nodescription' => true
                            ),
                        array(
                            "name" => __("Heading", 'avia_framework'),
                            'desc' => __('Trage hier die Headline ein','olicci'),
                            'id' => 'heading',
                            'type' => 'input',
                            'std' => 'Adserver'
                        ),
                        array(
                            "name" => __("Subheading","avia_framework"),
                            "desc" => __("Add an extra descriptive subheading below the actual heading","avia_framework"),
                            "id" => "subheading",
                            "type" => "input",
                            "std" => ""
                        ),
                    array(
                        "name" => __("Adserver Auswahl", 'avia_framework' ),
                        "desc" => __("Trage hier die Adserver ein, in denen das Feature enthalten ist", 'avia_framework' ),
                        "type" 			=> "modal_group",
                        "id" 			=> "content",
                        "modal_title" 	=> __("Edit List Item", 'avia_framework' ),
                                "std" => array(
                                    array('title' => 'Display AdServer','color' => "#400954", "link" => "")
                                ),
    
                        'subelements' 	=> array(
    
                                    array(
                                        "name" => "AdServer Titel",
                                        "desc" => "Der Titel des AdServers",
                                        "id" => "title",
                                        "std" => "Adnetwork",
                                        "type" => "input"
                                    ),
                                    array(
                                        "name" => "Link",
                                        "desc" => "Link zur Adserver Beschreibung",
                                        "id" => "link",
                                        "type" => "linkpicker",
                                        "fetchTMPL" => true,
                                        "std" => "",
                                        "subtype" => array(
                                            __('No Link', 'avia_framework' ) =>'',
                                            __('Set Manually', 'avia_framework' ) =>'manually',
                                            __('Single Entry', 'avia_framework' ) =>'single',
                                            __('Taxonomy Overview Page',  'avia_framework' )=>'taxonomy',
                                        )
                                    ),
                                    array(
                                        "name" => "Kreis-Farbe",
                                        "desc" => "Farbe des Kreises des Elements",
                                        "id" => "link_color",
                                        "type" => "colorpicker",
                                        "std" => "",
                                    )
    
                        )
                    ),
    				
    				array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    				),		
    						
    								array(
    									"type" 	=> "tab",
    									"name"	=> __("Screen Options",'avia_framework' ),
    									'nodescription' => true
    								),
    								
    								
    								array(
    								"name" 	=> __("Element Visibility",'avia_framework' ),
    								"desc" 	=> __("Set the visibility for this element, based on the device screensize.", 'avia_framework' ),
    								"type" 	=> "heading",
    								"description_class" => "av-builder-note av-neutral",
    								),
    							
    								array(	
    										"desc" 	=> __("Hide on large screens (wider than 990px - eg: Desktop)", 'avia_framework'),
    										"id" 	=> "av-desktop-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    								
    								array(	
    									
    										"desc" 	=> __("Hide on medium sized screens (between 768px and 989px - eg: Tablet Landscape)", 'avia_framework'),
    										"id" 	=> "av-medium-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    										
    								array(	
    									
    										"desc" 	=> __("Hide on small screens (between 480px and 767px - eg: Tablet Portrait)", 'avia_framework'),
    										"id" 	=> "av-small-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    										
    								array(	
    									
    										"desc" 	=> __("Hide on very small screens (smaller than 479px - eg: Smartphone Portrait)", 'avia_framework'),
    										"id" 	=> "av-mini-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    									
    								
    							  
    				
    							
    								
    							array(
    									"type" 	=> "close_div",
    									'nodescription' => true
    								),	
    								
    								
    						
    						
    					array(
    						"type" 	=> "close_div",
    						'nodescription' => true
    					),
    
                );
    
                if(current_theme_supports('avia_template_builder_custom_tab_toogle_id'))
                {
                    $this->elements[2]['subelements'][] = array(
                        "name" 	=> __("For Developers: Custom Toggle ID",'avia_framework' ),
                        "desc" 	=> __("Insert a custom ID for the element here. Make sure to only use allowed characters",'avia_framework' ),
                        "id" 	=> "custom_id",
                        "type" 	=> "input",
                        "std" 	=> "");
                }
    
            }
    
            /**
             * Editor Sub Element - this function defines the visual appearance of an element that is displayed within a modal window and on click opens its own modal window
             * Works in the same way as Editor Element
             * @param array $params this array holds the default values for $content and $args.
             * @return $params the return array usually holds an innerHtml key that holds item specific markup.
             */
            function editor_sub_element($params)
            {
                $template = $this->update_template("title", "{{title}}");
    
                $params['innerHtml']  = "";
                $params['innerHtml'] .= "<div class='avia_title_container' {$template}>".$params['args']['title']."</div>";
    
                return $params;
            }
    
            /**
             * Frontend Shortcode Handler
             *
             * @param array $atts array of attributes
             * @param string $content text within enclosing form of shortcode element
             * @param string $shortcodename the shortcode found, when == callback name
             * @return string $output returns the modified html string
             */
            function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
            {
                    extract(AviaHelper::av_mobile_sizes($atts)); //return $av_font_classes, $av_title_font_classes and $av_display_classes 
    
                    extract(shortcode_atts(array(
                    'font_color' => "",
                    'color' => '',
                    'size' => '',
                    
                    ), $atts, $this->config['shortcode']));
                    
                    
                    $custom_class = !empty($meta['custom_class']) ? $meta['custom_class'] : "";
                    $output = '';
                    $markup = avia_markup_helper(array('context' => 'entry','echo'=>false, 'custom_markup'=>$meta['custom_markup']));
                    $markup_text = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'custom_markup'=>$meta['custom_markup']));
    
                    $output .= "<!-- ";
                    $output .= var_export([$atts,$content],true);
                    $output .= "-->\n";
                    $output .= '<section class="av_featurebox_section">';// '.$markup.'>';
                    $output .= '<div class="olicci-sign">';
                    $output .= '<img src="'.trailingslashit(get_stylesheet_directory_uri()).'img/olicci-sign-30x30.png" alt="" />';
                    $output .= '</div>';
                    $output .= '<div class="title">';
                    $output .= "<h4>".$atts['heading']."</h4>";
                    $output .= "<h6>".$atts['subheading']."</h6>";
                    $output .= "</div>";
                    //$output .= "<div class='avia_textblock {$custom_class}' {$markup_text}>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";
                    $output .= "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";
                    $output .= "<div class='avia_footer'>";
                    $output .= "</div>";
                    $output .= '</section>';
                    return $output;
            }
    
            function av_olicci_featureitem($atts, $content = "", $shortcodename = "")
            {
                $output = $titleClass = $contentClass = "";
                /*$toggle_atts = shortcode_atts(array('title' => '', 'tags' => '', 'custom_id' => '', 'custom_markup' =>''), $atts, 'av_olicci_featureitem');
    			$toggle_init_open_style = "";*/
                
                $atts =  shortcode_atts(array('title' => '', 'link' => '', 'link_color' => ''), $atts, 'av_olicci_featureitem');
    
                $link = aviaHelper::get_url($atts['link']);
    
                $output = "<a href='".$link."' class='tooltip' data-tooltip='".esc_attr($atts['title'])."'>";
                $output .= "<div class='circle' style='background-color: ".esc_attr($atts['link_color'])."'></div>";
                $output .= "</a>";
    			
    
                return $output;
            }
    
        }
    }
    
    

    You can use it as a starting point for additional shortcode settings, etc.

    Regards,
    Peter

    #971126

    The problem is that …/wp-content/themes/enfold/css/avia-snippet-widget.css shows

    /*tagcloud*/
    .tagcloud br{display:none;}
    .tagcloud a{
    font-size:11px !important;
    padding:2px 8px;
    margin:0 1px 1px 0;
    display:block;
    float:left;
    border-style: solid;
    border-width: 1px;
    text-decoration: none;
    }

    What can we do within child theme to overwrite the font-size:11px !important;?

    Thanks

    Hey Victoria,

    thank you for your reply!
    I checked again my folders and they seem ok, which means the structure is the same as in the parent.

    What I did:
    1) I downloaded and then made changes to the includes > loop-index.php as Ismael suggested here:

    2) I uploaded the includes-folder with the only file loop-index.php into my child-theme;
    3) In Dashboard in the Quick CSS field I added:
    .title-cat {
    font-size: 18px;
    text-transform: none;
    line-height: 1.5;
    letter-spacing: normal;
    }

    But I don´t see the Categories above my Post-Titles yet.

    Maybe you have an idea what to try next.
    Thank you!
    Vesna

    #971049

    Hey!

    You can try adding Code Block element to your page and inserting following inside it to apply custom CSS only for that page

    <style>
    .av-image-caption-overlay-center p {
      font-size:40px !important;
    }
    </style>

    Regards,
    Yigit

    #971042

    I think I will come back to you later. The thing is, that the font size within this module was ignored on all pages. So I think there must be something wrong in other settings. However I inserted the code without the page id and it works for the moment. Only if I want to use different sizes on different pages I do not want to insert the code for every single page.

    Or do you have a quick solution for this?
    Thanks Sophie

    #970968

    Hi Sophie,

    Please try the following in Quick CSS under Enfold->General Styling:

    .page-id-144 .av-image-caption-overlay-center p {
      font-size:40px !important;
    }

    Best regards,
    Rikard

    #970844

    Hey buxton161,

    You can use this code to create the element:

    
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='collections' av_uid='av-6pr6fk']
    [av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6hwbk8']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/winter-girl-small-495x400.jpg' attachment='551' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product,66' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-6dsjcg']
    NEW
    WINTER COLLECTION
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6686k8']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/couple-sitting-495x400.jpg' attachment='546' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,15' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-61m3e8']
    LATEST
    STREET CLOTHES
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-5wd80g']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/girls-shopping-desat-495x400.jpg' attachment='549' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,12' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-5oekkg']
    FRESH
    SPORTSWEAR
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-jvrd4']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working-495x400.jpg' attachment='554' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,10' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-5cjrlk']
    FUNKY
    ACCECCOIRS
    [/av_image]
    
    [/av_cell_one_fourth]
    [/av_layout_row]
    
    

    I recommend to activate the debug mode ( https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode ) – then you can add this code directly to the debug field (textarea under the layout builder on the editor page). Then click the blue “update” button on the editor page and the editor will load the element after the saving process.

    Best regards,
    Dude

    #970737
    Sophieja23
    Participant

    Hi,

    on this site the picture caption (title?) is set to 40 px. But it is ignored somehow. I did not find the setting which is overriding this….

    https://onlineunternehmerakademie.com/dieakademie/

    Could you please help?

    Thanks, Sophie

    #970629

    Hi Jörg,

    If we look at this code:

    .woocommerce-cart-form__contents button, .woocommerce-cart-form__contents .input-text {
    font-size:18px !important;
    }

    This is a class, everything which starts with a . is:

    .woocommerce-cart-form__contents

    If it doesn’t start with a . or a #, then it’s an html element:

    button = <button>Some content</button>

    Hope that makes things more clear :-)

    If you want to learn more about CSS then I can recommend W3 Schools which have good resources. I appreciate that you are trying to learn though, a lot of users on the forum tend to use us for all their changes.

    Best regards,
    Rikard

    #970381

    Hi Rikard,

    well there are several other button and field elements where these changes don’t take effect. I played around a little bit with CSS tutorials and the browser’s code inspector on the cart page to get more familiar with this, but I must say right now it*s still confusing and not easy to understand the CSS syntax.

    I don’t expect that you teach me CSS, but maybe you could explain some questions I have with your code example:
    .woocommerce-cart-form__contents button, .woocommerce-cart-form__contents .input-text {
    font-size:18px !important;
    }

    button and input-text obviously are the CSS classes. But why has input-text a leading “.”, and button not?
    Where is .woocommerce-cart-form__contents coming from?

    There are a lot of elements that need also to be worked at, so if I would understand the basics here, I could go on by myself.

    Thanks a lot!

    Jörg

    #970022

    Topic: Font Size Product Page

    in forum Enfold
    td8000
    Participant

    Hello Enfold team,

    after theme update the font sizes on my product pages are different.

    See links below.

    Those products were created exactly the same way. Also deleting all my Quickk CSS did change nothing.

    Thanks for help, Tobi

    Hi Vinay,

    thank you so much for your detailed information.

    1. Okay, I loaded each font weight of my requested font Lato separately, even though I loaded a zip file with all font weights in one zip file before. It seems to work, but I wonder why the local fonts do look different than Google fonts. For example, bold is not bold (it’s kind of “light bold”), even though I loaded Lato 700. Do you have any idea what is happening here?

    2. That’s what I tried, but in blockquote in Enfold > Advanced Styling it is only possible to change font color, border color, font size and line space. No font family can be added. Same with p style.

    3. The icons I need for my recipes are „check“ for marking the ingredients and recipe steps and “print” for printing the recipe (please find in private content box a link to my website where you can see print button and check marks) and these icons are already included in Enfold theme. So, do you mean by “Disable the “font-awesome” script by removing the first line inside the brackets” to disable like as follows? I am not quite sure how to do :o( :

    function enfold_child_custom_script() {
        wp_enqueue_style( 'font-awesome', array(), 1.0);
        wp_enqueue_script( 'avia-main-child', get_stylesheet_directory_uri().'/js/main.js', array('jquery', 'avia-default'), 2, true );
    }
    add_action( 'wp_enqueue_scripts', 'enfold_child_custom_script', 100 );

    Thank you so much for your kind help in advance.

    Wish for you a good day!

    Best regards,
    Sophie

    #969977

    Topic: Missing bullet points

    in forum Enfold
    mfuji
    Participant

    Hello,
    I cannot show bullet points on my page. I can see them in edit mode – preview, but they don’t appear in real posts.
    I use Avia Layout Builder.

  • <span style=”font-size: 12pt;”>“More productivity” means increased material abundance, but you cannot necessarily become happy by owning as much as you can.</span>

Hi @Ismael,

yes, that can be a solution for the Meta but for me it isn’t one. I liked the old design and the design changed a lot after the last update.
Also, your solution doesn’t help with problem of the post element on the front page having another font size then before and the headline still being displayed above the image.

Best Regards,
Olaf

#969967

Hi,

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

.woocommerce-cart-form__contents button, .woocommerce-cart-form__contents .input-text {
  font-size:18px !important;
} 

Best regards,
Rikard

#969958

Hey elbnetz,

Do you mean the WordPress default widget? If so, as far as I know, the font size changes according to how many times the tags have been used on the site?

Best regards,
Rikard

#969850
dcpatoday
Participant

Hi,
How can I get an Icon to apear inline where I put the short code?

I have:
<span class="event_details_header_date">NOW – MAY 27</span> <span class="event_details_header_theatre">STAGE THEATRE</span> <span class="event_details_header_map"><a href="/plan-your-visit/theatres-seating/the-stage-theatre/">[av_font_icon icon='ue842' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='right' color='' av_uid='av-s61pm3' custom_class='' admin_preview_bg=''][/av_font_icon] MAP</a></span>

I have some css to fix it:

.event_details_header_map .av_font_icon {
    display: inline;
    float: none;
}

Is this best practice?
Putting an inline option in the icon position drop downs in the WYSIWYG would be helpful.

Thanks!

killyman
Participant

Enfold version 4.4.1

I’ve been trying for two days to get a custom CSS class selector to work with the included Exo Google Fonts, but the theme’s Heading Font choice for font family in the “theme options > general styling > fonts” section keeps overriding my custom CSS font family choice.

In my child theme style.css file I have the following CSS (see pastebin link):
https://pastebin.com/4VxF9JzK
FYI, the font-size and letter-spacing properties do work, just not the font-family property.

In the text block on the homepage, I have the following HTML (see pastebin link):
https://pastebin.com/nTT20SpZ

The only way I can get the Exo font to apply to the heading font is by selecting it in the “theme options > general styling > fonts” section. But I don’t want the Exo font to be used for site-wide heading titles, only for the special “main-products-heading-title” CSS class I created and added to my child theme style.css file.

On my homepage, just below the full width slider, look for the PRODUCT NAME® heading text to see what I’m referring to. I only want the Exo font family applied to the “main-products-heading-title” CSS class I created for and applied to this heading text.

#968774

Hello Rikard,

right – the buttons AND the input fields that have this very small font (e.g. “Gutscheincode” or “Gutschein anwenden”). Font size of “Weiter zur Kasse” would be correct. I don’t know why the font sizes differ between the different buttons and where to configure them.

Regards, Jörg

#968740

Hi Jörg,

Thanks for that, so it’s the font size of the buttons on the cart page you are looking to edit? If so, which of the buttons are the correct font size?

Best regards,
Rikard

#968737
elbnetz
Participant

Hi There,

We would like to have the standard tag cloud with different font sizes. All posts here in the forums regarding this topic seems to be outdated. They didn’t help. We too want to avoid another plugin. Is there a solution for us?

Many Thanks, TF

#968256

Hey Tim,

Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

CSS Snippet:


/* CSS - WooCommerce font */


#top.woocommerce p {
    font-size:15px;
}

/* End CSS */

Best regards,
Vinay

Viewing 30 results - 6,841 through 6,870 (of 18,743 total)