Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #150284
    luismarioochoa
    Participant

    Hello,

    http://bloomrestaurant.com/

    Please show me how to:

    1. Center the FaceBook and Twitter logos on the footer.
    2. How to change the gray color of the Copyright 2018 All Rights Reserved text in the footer (not the name of the site) to another color.

    Thanks

    Luis

    #150291
    sapana
    Participant

    @luismarioochoa:
    1)To center the logo
    -create div for both social icons(social-icons)

    <div id="social-icons" class="social-icons">
                        <a href="https://www.facebook.com/BloomRestaurantToronto/"><img src="http://bloomrestaurant.com/wp-content/uploads/2018/07/facebook-e1532482480174.png"></a>
                    
                        </a>
                        <a href="https://twitter.com/bloomrestaurant"><img src="http://bloomrestaurant.com/wp-content/uploads/2018/07/twitter-e1532482445370.png"></a>
     </div>

    Go to = Appearance => Customize =>Additional CSS add following CSS code.
    .social-icons{
    text-align:center;
    }`

    2)To change the color of copyright
    <strong> Go to => Appearance => Customize =>Additional CSS</strong> add following CSS code.

    #site-generator .copyright {
    color: blue
    }

    you can change the color according to your requirement.

    Kind Regards,
    Sapana

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘centering image in footer’ is closed to new replies.