Footer links + copyright section

Hi! First post here on the forum, I’m sure I will have more! Reteaching all this to myself, so I am in need of some help.

I have been able to edit the extras.php file to remove ‘powered by wordpress’, and I have also used the Theme Customize option to add custom footer links.

I’ve tried playing around with the css to move all these links to the LEFT because they are currently set to the RIGHT and the text is wrapping and adding another link rather than pushing left until the entire footer bar is full of text.

I even had the entire text section in the footer moved to the right but it was STILL wrapping and not expanding the entire footer bar.

Can someone help I’m a newb :stuck_out_tongue:

There is a Menu section on footer, you should try adding some links on footer sections to see how it looks. Is pretty much useful to display institutional informations.

But if you dont like the footer menu section, try remove it. Copy the footer.php file to your child theme, then you will find this:

<div class="row">
<?php sparkling_social(); ?>
<nav role="navigation" class="col-md-6">
<?php sparkling_footer_links(); ?>
</nav>
<div class="copyright col-md-6">
<?php echo of_get_option( 'custom_footer_text', 'sparkling' ); ?>
<?php sparkling_footer_info(); ?>
</div>
</div>

try removing

<nav role="navigation" class="col-md-6">
<?php sparkling_footer_links(); ?>
</nav>

and edit

<div class="copyright col-md-6">

to

<div class="copyright col-md-12">

I don’t know if this really works, if you do, the menu section still on the menu-admin-panel and i don’t have idea how to remove it from there.

I hope it helps.