Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #103784
    Original_Grumps
    Participant

    I want to move the black bar which appears on every page except the home page, it contains a copyright statment and the theme information. I don’t want to delete it but rather than it appear in the middle of the screen on some pages I would like to move it nearer the bottom of the screen.

    My site URL is http://wip.scb-photography.co.uk/

    Thanks you

    #103814
    Mahesh
    Participant

    @priginal_grumps: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    html, body {
        height: 100%;
    }
    
    #page {
        position: relative;
        min-height: 100%;
        height: 100%;
    }
    
    #colophon {
        position: absolute;
        bottom: -1px;
        width: 100%;
    }

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Move black bar with copyright and the theme details’ is closed to new replies.