Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1109217

    HI,

    I would like to change the Heading font for the footer to the body text font.

    I would also like to change enlarge the size of the font on the Home page Masonary Gallery section.

    How can I do this?

    Thank you,
    Maya

    #1109359

    Hey mayamaria,

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

    #footer .widgettitle {
      font-family:"transfonter.org-20190530-150259";
    }

    Best regards,
    Rikard

    #1109437

    Hi Rikard,

    Thank you, the worked. How can I now adjust the size of the fonts?

    Kind regards,
    Maya

    #1109653

    Hi,

    Please try this instead:

    #footer .widgettitle {
      font-family:"transfonter.org-20190530-150259";
      font-size:12px;
    }

    Best regards,
    Rikard

    #1122508

    Hi,

    I am currently using the heading font for the footer heading and would like to change it to the body font (same as the main menu). I’ve tried the above code but it is not working. I’ve cleared the cache and history as well. Please let me know if there is another code I can use?

    Many thanks,
    Maya

    #1122981

    Hi,

    Thank you for the update.

    Looks like the widget heading and the menu items are now using the same font. Is that correct?

    h1, h2, h3, h4, h5, h6, #top .title_container .main-title, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox, .av-special-font, .av-current-sort-title, .html_elegant-blog #top .minor-meta, #av-burger-menu-ul li {
        font-family: "transfonter.org-20190530-150239","HelveticaNeue","Helvetica Neue","Helvetica-Neue",Helvetica,Arial,sans-serif;
    }

    Best regards,
    Ismael

    #1124550

    Hi,

    H1, H2, H3, H4, H5 is using the same font. I would like the Footer heading to be using the 20190530-150259 font (which is the body font. Same as the Main menu font) do the above code is not working.

    Many thanks!
    Maya

    #1124553

    Also, Is there a way to add a 6th column to the footer?

    Thank you.

    #1124556

    I sorted out the font style but still would like to know how to add the 6th column. Thank you!

    #1124741

    Hi,

    That is possible, but you have to modify the includes > admin > register-widget-area.php file.

    	#footer
    	$footer_columns = avia_get_option( 'footer_columns', '5' );
    
    	for ($i = 1; $i <= $footer_columns; $i++)
    	{
    		register_sidebar(array(
    			'name' => 'Footer - column'.$i,
    			'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></section>', 
    			'before_title' => '
    <h3 class="widgettitle">', 
    			'after_title' => '</h3>
    ', 
    			'id'=>'av_footer_'.$i
    		));
    	}
    

    Set the “$footer_columns” value from 5 to 6. Then edit the includes > register-admin-options.php file, look for this code:

    $avia_elements[] =	array(
    					"slug"	=> "footer",
    					"name" 	=> __("Footer Columns", 'avia_framework'),
    					"desc" 	=> __("How many columns should be displayed in your footer", 'avia_framework'),
    					"id" 	=> "footer_columns",
    					"required"	=> array( 'display_widgets_socket', '{contains_array}all;nosocket' ),
    					"type" 	=> "select",
    					"std" 	=> "4",
    					"subtype" => array(
    						__('1', 'avia_framework') =>'1',
    						__('2', 'avia_framework') =>'2',
    						__('3', 'avia_framework') =>'3',
    						__('4', 'avia_framework') =>'4',
    						__('5', 'avia_framework') =>'5'));
    

    Add the 6th option in “subtype” array.

    Best regards,
    Ismael

    #1124742

    Hi,

    That is possible, but you have to modify the includes > admin > register-widget-area.php file.

    	#footer
    	$footer_columns = avia_get_option( 'footer_columns', '5' );
    
    	for ($i = 1; $i <= $footer_columns; $i++)
    	{
    		register_sidebar(array(
    			'name' => 'Footer - column'.$i,
    			'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></section>', 
    			'before_title' => '
    <h3 class="widgettitle">', 
    			'after_title' => '</h3>
    ', 
    			'id'=>'av_footer_'.$i
    		));
    	}
    

    Set the “$footer_columns” value from 5 to 6. Then edit the includes > register-admin-options.php file, look for this code:

    $avia_elements[] =	array(
    					"slug"	=> "footer",
    					"name" 	=> __("Footer Columns", 'avia_framework'),
    					"desc" 	=> __("How many columns should be displayed in your footer", 'avia_framework'),
    					"id" 	=> "footer_columns",
    					"required"	=> array( 'display_widgets_socket', '{contains_array}all;nosocket' ),
    					"type" 	=> "select",
    					"std" 	=> "4",
    					"subtype" => array(
    						__('1', 'avia_framework') =>'1',
    						__('2', 'avia_framework') =>'2',
    						__('3', 'avia_framework') =>'3',
    						__('4', 'avia_framework') =>'4',
    						__('5', 'avia_framework') =>'5'));
    

    Add the 6th option in “subtype” array.

    Best regards,
    Ismael

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