-
Hi there, I am struggling to add content to the footer above the copyright dark footer. where do i find the settings for that? (its the space that has the logo and main links)
Hello Andrea DC,
in order to edit the footer contents, you need to edit the Footer Sidebar.
You can reach under Appearance -> Widgets.Have a good day!
AndreaOh I see, thank you! is there any way to make it 1 column? everytime I put something in there it puts it all the way to the left.
Hello!
Our product doesn’t natively include a central aligned feature for the footer but our developers provide you an easy way to implement it.First, make sure you are using the Lifecoach Child Theme.
Then find your child theme using your FTP client in wp-content -> Themes -> lifecoach-child and edit the file functions.php.At the end of the file paste this code snippet:
function lifecoach_widgets_init() { register_sidebar( array( 'name' => esc_attr__( 'Right Sidebar', "lifecoach" ), 'id' => 'lifecoach-right-sidebar', 'before_widget' => '<aside id="%1$s" class="col s12 m3 l12 qt-widget qt-content-aside %2$s">', 'before_title' => '<h5 class="qt-widget-title qt-inline-textdeco"><span>', 'after_title' => '</span></h5>', 'after_widget' => '</aside>' )); register_sidebar( array( 'name' => esc_attr__( 'Footer Sidebar', "lifecoach" ), 'id' => 'lifecoach-footersidebar', 'before_widget' => '<aside id="%1$s" class="qt-widget col s12 m12 l12 qt-ms-item %2$s">', 'before_title' => '<h5 class="qt-widget-title qt-inline-textdeco"><span>', 'after_title' => '</span></h5>', 'after_widget' => '</aside>' )); register_sidebar( array( 'name' => esc_attr__( 'Off Canvas Sidebar', "lifecoach" ), 'id' => 'lifecoach-offcanvassidebar', 'before_widget' => '<aside id="%1$s" class="qt-widget col s12 m3 l3 qt-ms-item %2$s">', 'before_title' => '<h5 class="qt-widget-title qt-inline-textdeco"><span>', 'after_title' => '</span></h5>', 'after_widget' => '</aside>' )); }
Save it and you should be ready to go.
Keep me posted if this workaround works for you.Have a good day,
Andrea
The topic ‘Footer’ is closed to new replies.