• Hey there!

    I’m trying to find out how to add a tagline to the footer of my website.

    I want it to be located on the bottom left (opposite of where the navigation menu is)

    any ideas?

    here’s my website: http://www.codyblue.net/

Viewing 3 replies - 1 through 3 (of 3 total)
  • I just installed it and looks like there is a footer widget in the theme – so you should be able to add text there and then use CSS to style it and move it a bit if need be.

    If that doesn’t do what you want, we can modify the footer.php file – in a copy of the file in the child theme too.

    Thread Starter codblue

    (@codblue)

    Thank you!! I think I got it.

    Thread Starter codblue

    (@codblue)

    Here’s the CSS for anyone else.

    #footer-area {
        border-bottom: 0 solid #CCCCCC;
        line-height: 14px;
        margin-bottom: -39px;
    }
    
    #footer-area .widget {
        box-shadow: none;
        float: left;
        font-family: neouthin;
        font-size: 22px;
        letter-spacing: 2px;
        margin-left: 20px;
        width: 300px;
    
    }
    
    #footer-area .widget:first-child {
        margin-left: -96px;
    }

    change the font-family to one you have in your files.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Adding text to the footer of my website.’ is closed to new replies.