Center Footer Credits - SHAPELY

Hey @movin!

I am trying to center the footer-credits on my site.

I was able to get the widgets to center but the copyright doesn’t want to move.

I thought
.footer-credits {
font-size: 14px;
float: none;
text-align: center;
margin: 0 auto;
}

would do it but no luck so far.

I’m using a child theme.

http://www.myworshipmentor.com

Thanks for any help you can give.

Hi @jkriggs,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

@media (min-width: 768px){
  .site-info.col-sm-6 {width: 65%;text-align: right;}
.col-sm-6.text-right{
  width: 35%;
}
}

Best Regards,
Movin

Thanks @Movin for all your help. It worked.

Question - just trying to understand Wordpress a little better - why is it necessary to specify the width percentage of col-sm-6? I guess I’m asking why isn’t it at 100% width?

I appreciate any wisdom you can pass along.

You are most welcome here :slight_smile:

Question – just trying to understand WordPress a little better – why is it necessary to specify the width percentage of col-sm-6? I guess I’m asking why isn’t it at 100% width?

Because we need space at the right side of footer to display footer social icons as shown in the attached screenshot.