Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Footer Is Not Selectable

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #43751
    mintertweed
    Participant

    Here is my website. For some reason, you can not click on the links or select the text in the footer. I know it has to be something in my CSS because somewhere between designing my portfolio website and this (which both use the same CSS code), I remember changing something in my CSS for Happy Naked People and not only did it help with whatever I was asking about then, but it also made it so you could click on the RSS feed and my personal link. I would appreciate it if someone could help me with this. Thank you in advance!

    Edit: I wish I had made a note in my previous thread when I solved the problem the first time, but I did not have the foresight to do it.

    #130098
    daffy58
    Participant

    It’s because the footer margin is -70px. To make the link clickable you have to add position:relative for

    footer{
    margin: -70px auto 0;
    height: 70px;
    border-top: 5px solid #A11517;
    clear: both;
    width: 960px;
    bottom: 0;
    **position: relative;**
    }

    Cheers !

    #130100
    daffy58
    Participant

    My pleasure ;)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.