What am I doing wrong here?

I’ve been banging my head against the wall for two days and can’t figure this out.
index page on: posweyb.net
style sheet: page.css (I am pretty sure).
I am trying to get the superscript link (the number 1) next to the word posweyb at the top of the page to go to the bottom of the page to the footer (#exactly):

<div id="main-nav">
			<h1 id="logo">
<span class="kern">
</span>pos Weyb</h1>
            <a href="#exactly" id="smalllink">1</a>
            </div>
			<hr>
	</div>

and follow these link rules:

a#smalllink{
	/* unvisited link */
a:link {
  color: #9a9995;
  text-decoration:underline
}

/* visited link */
a:visited {
  color: #60c0d8;
  text-decoration:blink
}

/* mouse over link */
a:hover {
  color: #a92d6c;
}

/* selected link */
a:active {
  color: #60c0d8;
}

The #1 superscript link is looking for an ID of #exactly

The #1 footer list item has an ID of #ems on it

Change your footer link to…<li id="exactly">

2 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.