Center Copyright Text

Discussion in 'Slice WordPress Theme' started by kmld_521, Sep 8, 2013.

  1. kmld_521

    kmld_521 Guest

    Joined:
    May 12, 2013
    Messages:
    24
    Likes Received:
    0
    How can I center the copyright to be dead center? When I use the code:

    .bottom-footer-container .bottom-footer .copy_right {
    float:center;
    }

    It is almost center but too far over to the right...
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Undo your old customization and Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .bottom-footer-container .bottom-footer .copy_right{
    margin-right:300px;
    }
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .bottom-footer-container .bottom-footer .copy_right{
    margin-right:250px;
    }
    }
    @media only screen and (max-width: 767px){
    .bottom-footer-container .bottom-footer .copy_right{
    margin-right:70px;
    }
    }
     
    @media only screen and (max-width: 480px){
    .bottom-footer-container .bottom-footer .copy_right{
    margin-right:20px;
    }
    }
    
    Adjust its value as per your requirements.
     

Share This Page