1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Silly question, simple to solve Id guess

Discussion in 'HTML & Website Design' started by holkapolka, May 21, 2018.

  1. #1
    at hampolje.com there is a > above logo image.

    I cant get i away.. Though see no error in html code.
     
    holkapolka, May 21, 2018 IP
  2. malky66

    malky66 Acclaimed Member

    Messages:
    3,996
    Likes Received:
    2,248
    Best Answers:
    88
    Trophy Points:
    515
    #2
    You have an extra ">" after the closing style tag and before the link tag:
    <style type="text/css">
    a:link {
        color: #000000;
    }
    a:visited {
        color: #000000;
    }
    a:hover {
        color: #000000;
    }
    a:active {
        color: #000000;
        font-size: 24px;
    }
    </style>
    >
    <link href="css/simpleGridTemplate.css" rel="stylesheet" type="text/css">
    Code (markup):
    That's Dreamweaver for ya!
     
    malky66, May 21, 2018 IP
    sarahk likes this.
  3. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #3
    FYI, the extra > acts to close the head element and drop everything following the style element into the body element in the document object model (DOM). The head is normally not displayed. See e.g. Firefox's default style sheet:
    
    base, basefont, datalist, head, meta, script, style, title,
    noembed, param, template {
    display: none;
    }
    Code (markup):
    Beware of any auto-complete.

    gary
     
    kk5st, May 22, 2018 IP