Removed all widgets at bottom of page, now just want to show a copyright

Discussion in 'Cloriato WordPress Theme' started by gcbox, Mar 19, 2013.

  1. gcbox

    gcbox New Member

    Joined:
    Mar 11, 2013
    Messages:
    6
    Likes Received:
    0
    ive removed all of the widgets at the bottom of the site but would like to only have the copyright information. is there a way to place that in the blue bar at the bottom like i've described?

    www.new.gcbox.com
     
  2. matthewkhuu

    matthewkhuu Guest

    Joined:
    Mar 16, 2013
    Messages:
    15
    Likes Received:
    0
    you can just use a text widget....or delete the whole footer like what I did and just have the copyright info.

    http://mkwebdesign.org/
     
  3. gcbox

    gcbox New Member

    Joined:
    Mar 11, 2013
    Messages:
    6
    Likes Received:
    0
    you have a very nice site.

    i tried doing that, but the other two columns wind up showing the widgets i removed if i try this approach. any other suggestions would be greatly helpful.
     
  4. matthewkhuu

    matthewkhuu Guest

    Joined:
    Mar 16, 2013
    Messages:
    15
    Likes Received:
    0
    go to footer.php and delete all the code from there (remember to copy it somewhere first just in case you need it back)

    then paste this in


    <hr>

    <div style = "clear: right; float: right; text-align: right;">

    <p class="copyright">© 2013 put your business name here</a></p>

    </div>
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Go to the footer.php file present in your theme directory and paste the code given below in that file as shown in the below image .
    Code:
    <div class="footer_bottom">
        <div class="container_24">
            <div class="grid_24 footer_copy">
                <div class="copyright">
                <p>&copy; 2013 put your business name here</p>
                </div>
            </div>
        </div>
      </div>
    [​IMG]

    Now,
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .footer-content {
    display: none;
    }
    .footer_copy {
    background: #005a72;
    width: 986px ! important;
    margin-left: -13px;
    }
    .footer_bottom .footer_copy .copyright p {
    color: white;
    text-align: right;
    padding-top: 12px;
    padding-right: 5px;
    }
    This will solve your issue
     

Share This Page