• Resolved Steven

    (@stevenvdh)


    Can someone tell me how to get my footer text lower (against border of website). It has to be something with padding or margin page or footer.

    HERE you see what I mean…
    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • This should work for what you are trying to get I think

    #site-generator > p {
        margin-bottom: 0;
    }

    Thread Starter Steven

    (@stevenvdh)

    Hey Brad,

    Thanks for the help, that did the trick! you make my day ??

    Maybe you know a solution for my last problem in that site?

    I try to underline the email-links in pages and website-link in footer when hovering. But if I change settings in css /*links*/ it makes changes also for menu buttons above…
    the underline should be in same color as text (so red for email-links in pages).

    Hey happy to help and it was what you needed.

    For the link situation, the following will underline all links under the menu area and footer.

    #content a:hover {
        text-decoration: underline !important;
        color: #FF0000;
    }
    
    #colophon a:hover {
    text-decoration: underline !important;
    
    }

    Thread Starter Steven

    (@stevenvdh)

    Who is the man? Brad is the man! Thx for all the help m8 ??

    hahah that’s ok, anytime! =)

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘footer text lower’ is closed to new replies.