-
AuthorPosts
-
June 11, 2019 at 5:02 pm #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,
MayaJune 12, 2019 at 5:50 am #1109359Hey mayamaria,
Please try the following in Quick CSS under Enfold->General Styling:
#footer .widgettitle { font-family:"transfonter.org-20190530-150259"; }
Best regards,
RikardJune 12, 2019 at 10:55 am #1109437Hi Rikard,
Thank you, the worked. How can I now adjust the size of the fonts?
Kind regards,
MayaJune 13, 2019 at 4:17 am #1109653Hi,
Please try this instead:
#footer .widgettitle { font-family:"transfonter.org-20190530-150259"; font-size:12px; }
Best regards,
RikardJuly 28, 2019 at 4:17 pm #1122508Hi,
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,
MayaJuly 30, 2019 at 12:21 am #1122981Hi,
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,
IsmaelAugust 4, 2019 at 4:29 pm #1124550Hi,
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!
MayaAugust 4, 2019 at 4:44 pm #1124553Also, Is there a way to add a 6th column to the footer?
Thank you.
August 4, 2019 at 4:55 pm #1124556I sorted out the font style but still would like to know how to add the 6th column. Thank you!
August 5, 2019 at 2:05 pm #1124741Hi,
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,
IsmaelAugust 5, 2019 at 2:06 pm #1124742Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.