• hi,
    i have a question regarding my footer (https://nay-k.de/creative)

    I want the width of the footer to stay but the text area within the footer should be 727px and centered. but the text should stay aligned left. how can I change the code to get that result?

    thank you for any help!!!

Viewing 1 replies (of 1 total)
  • This will take some coding in two places first will do the coding in your template footer
    In you theme editor click on the footer.php file look for code that looks like this.
    <div id="footer"> right below this add <div id="footertext"> then look farther down you your footer file for this code </div> just add another </div> right below that. Now onto the stylesheet, back in your theme editor click on stylesheet and look for the code near the top that says something like this
    #footer a {
    right below that under the } sign add this text

    #footertext {
    width:727px;
    margin:auto;
    }

    That’s all you need.

Viewing 1 replies (of 1 total)
  • The topic ‘Format footer’ is closed to new replies.