• site url is https://www.randomgoodness.ca.

    I’m working on an

      from the social communities portion of my site (can be found on the side bar). This
      includes social icons for facebook etc. complete with links. I can’t get the icons to appear, the hover works but no icons.

    Please take a look and tell me what I’m doing wrong.

    thanks.

    Josh

Viewing 4 replies - 1 through 4 (of 4 total)
  • Ah, a list uses different coding than paragraph tags. Yours is (I’ll just use a few lines):

    <p>My name is jon</p>
    <p>i live in canada</p>
    <p>this is my first post</p>

    It should be:

    <ul>
    <li>My name is jon</li>
    <li>i live in canada</li>
    <li>this is my first post</li>
    </ul>
    Thread Starter alltrue

    (@alltrue)

    sorry Diane it look like you misunderstood my question.
    I’m referring to the blue side bar. under the images there is a social community part that is suppose to have logos under it.

    alltrue,
    You need to have text between your open and close Anchor tags, like this:
    Josh
    a href=”https://twitter.com/joshwithell&#8221; title=”link to Twitter profile”>Josh</a

    try a little change in style.css – add the link ‘a’ to the styles and adapt the padding/margin:

    #community li a{
    padding: 13px;margin:5px;
    text-decoration:none;
    float:left;
    }
    #community li a:hover{
    background:#08c;
    color:#fff;
    }
    
    .twitter a { background: url(/images/twitter.png) no-repeat;}
    .facebook a { background: url(/images/facebook.png) no-repeat;}
    .flickr a { background: url(/images/flickr.png) no-repeat;}
    .youtube a {background: url(/images/youtube.png) no-repeat;}
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘need a someone to review my underoreded list code’ is closed to new replies.