Adding disclaimer text in the footer area.

Discussion in 'BlogSpring WordPress Theme.' started by qleapent, Aug 16, 2014.

  1. qleapent

    qleapent Guest

    Joined:
    Jun 20, 2014
    Messages:
    7
    Likes Received:
    0
    I want to place disclaimer text in the footer area just above the copyright information text and the footer link. Where do I go to add in these text?
     
  2. PankajK

    PankajK Support Staff

    Joined:
    Aug 8, 2014
    Messages:
    93
    Likes Received:
    5
    Hi qleapent
    You can use footer widget area to add a disclaimer text, just go to widget and add a 'text widget' to 'first footer widget area'. However if you want it between footer widget and footer copyright area you need to edit you footer.php file.

    Go to line no 15 and find '<div class="bottom_footer_container">' just above it, paste the codes given below. Edit "Your disclaimer info here".
    Code:
    <div class="bottom_footer_container">
        <div class="container_24">
            <div class="grid_24">
                <div class="bottom_footer_content">
                    <div class="grid_24">       
                        <div class="copyrightinfo">
                                <p class="copyright">Your disclaimer info here</p>
                        </div>   
                    </div>
                </div>
            </div>
        </div>
      <div class="clear"></div>
    </div>
     

Share This Page