-
Author
-
May 10, 2016 at 11:08 #121131
gkritikos_1991111
Participanthi my name is George. I have the Kleo wordpress theme and i need to add 2 colums on footer from 4 to 6. Also i need to change my top bar colour and add another links from social. can you help me? thanks.
May 11, 2016 at 19:20 #121401Radu
ModeratorHi, Please upload the attached file after you unzip it to : wp-content/themes/kleo-child/ Then paste this code in this file : wp-content/themes/kleo-child/functions.phpfunction my_extra_footer_widget_cols () { register_sidebar(array( 'name' => 'Footer sidebar 5', 'id' => 'footer-5', 'before_widget' => 'NOTE : Kleo Child theme needs to be installed and activated. Cheers R.', 'after_widget' => '', 'before_title' => '', 'after_title' => '
', )); register_sidebar(array( 'name' => 'Footer sidebar 6', 'id' => 'footer-6', 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '
', )); } add_action( 'widgets_init', 'my_extra_footer_widget_cols' );May 12, 2016 at 19:08 #121545Radu
ModeratorHi, The top bar can be changed with this css, but on the homepage the structure is different maybe you are working on the site right now.header-color.social-header { background-color: #1c1c1c; }The css can be added to wp-admin -> theme options -> general options -> quick css Also you can turn off the icons from wp-admin -> theme options -> social info -> and remove the link from the field and save , ten the icons will disappear. You can add your custom link there by going to wp-admin -> appearance -> menus -> create a menu and select position -> Top Menu Cheers R.May 30, 2016 at 16:29 #123582Radu
ModeratorPlease follow this link : https://archived.seventhqueen.com/forums/topic/how-can-register-japanese-font solution is provided here Cheers R.June 13, 2016 at 19:10 #125430Radu
ModeratorHi, Please add this function to wp-content/themes/kleo-child/functions.phpadd_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }Let me know Cheers R. -
AuthorPosts
Viewing 22 posts - 1 through 22 (of 22 total)
You must be logged in to reply to this topic.