• 1. Change the color of the social media icons on the side bar

    2. Change the color of the title’s on the side bar

    3. Remove the footer bar, completely

    4. Change the color of the post reply button and subscribe button

    5. Center the social media icons on side bar

Viewing 7 replies - 1 through 7 (of 7 total)
  • You will need to add some custom CSS to achieve this.
    Install and activate this plugin then go to “Add Custom CSS” on your dashboard and paste this

    
    /* For the social icons in widget */
    .widget .socials li a {
        color: red;
    }
    /*center them*/
    .widget .socials {
        float: none;
        text-align: center;
    }
    /* Widget title */
    .widget-title {
        color: red;
        background: #fff;
    }
    /*remove footer*/
    
    footer{
      display:none;
    }
    

    in the box.

    Finally have a look here https://www.ads-software.com/support/topic/change-color-of-subscribe-buttons/ to change the color on reply and subscribe buttons.

    Let me know if you get stuck somewhere

    • This reply was modified 8 years, 2 months ago by Fotis.
    Thread Starter whitneykays

    (@whitneykays)

    Thank You, for replying. I got the footer to work but nothing to work with the widgets. I refreshed and cleared my cookies and history.

    Hi there,
    can you provide a URL so I can have a closer look?

    Thread Starter whitneykays

    (@whitneykays)

    Fotis

    (@markwaregr)

    Hi there,
    can you try this for your social plugin?

    .wpcw-widgets li a{
     color:red;   
        float:none;
    }
    .wpcw-widgets{
     text-align:center; 
    }

    and this

    .sidebar .widget-title{
    color:red;
    }

    for your widget titles

    Thread Starter whitneykays

    (@whitneykays)

    Thank You, I got the social widgets to be centered. Also, is there a code to center the bottom footer?

    • This reply was modified 8 years, 1 month ago by whitneykays.
    Fotis

    (@markwaregr)

    Hi there,
    in the way you currently have it rendered I am afraid it cannot be centered.
    But you can replace the copyright string with
    <div class="footer-text">WHITNEY KAY-MAMAPRENEUR + BLOGGER 2016</div>

    and then paste this

    .footer-text{
      display:block;
      text-align:center;
    }
    

    in your custom CSS box

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Help Needed’ is closed to new replies.