Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

cannot get into the different pages on www.ryanminks.com

0 views
Skip to first unread message

min...@bellsouth.net

unread,
Dec 10, 2009, 12:06:41 PM12/10/09
to
I am the admin and the builder of www.ryanminks.com
I cannot go into the webpages because it keeps directing to the
"Migration" of the website.
When you try and go into the different pages on the website it comes
up with an navigational problem.
I need help please. I do not know how to fix this.
alan
min...@bellsouth.net

Osmo Saarikumpu

unread,
Dec 10, 2009, 12:45:11 PM12/10/09
to
min...@bellsouth.net kirjoitti:

> I cannot go into the webpages because it keeps directing to the
> "Migration" of the website.

No redirection here. Them links just don't work at all. This is because
their href (hypertext reference) attribute points to a non existing
resource. Say the news link:

<a href="about:news"><font color="#006600">NEWS</font></a>

points to a resource named "about:news" when it probably should point to
an other HTML document, e.g. "news.htm".

As a quick fix just edit them href attribute values. There should be a
mechanism to do that via a GUI, but the specifics depend on the Office
application and version you are using to generate the pages. But you can
do the same by hand using Notepad. Just search (via the Edit menu) for
href and make the appropiate changes.

--
Best wishes,
Osmo

David E. Ross

unread,
Dec 10, 2009, 1:14:27 PM12/10/09
to

Your links are not constructed for the Web. For example, I see
<a href="about:ryan&#39;sstory"><font color="#006600"
size="4">RYAN&#39;S STORY</font></a>

This should be
<a href="http://www.ryanminks.com/ryan&#39;sstory"><font color="#006600"
size="4">RYAN&#39;S STORY</font></a>

I also suggest you use an actual apostrophy in place of &#39; in your
text. You should avoid special characters (e.g., &#39;) in your URIs,
except for - (hyphen) and _ (underscore). Thus, the fragment I cited
above would be
<a href="http://www.ryanminks.com/ryans_story"><font color="#006600"
size="4">RYAN'S STORY</font></a>

Finally, if you specify the color of a link (#006600 in your case, dark
green), you really should specify a contrasting color for that link when
it has already been visited. This is best done via a style sheet.
However, many people advocate not specifying link colors at all, leaving
the links to be colored according to the individual settings on each
user's browser (in my case, blue for unvisited, red for visited, and
red-orange while a link is being selected). Note that green for
unvisited and red for visited would create problems for many of those
who are color-blind since red-green color-blindness is the most common
form of that visual impairment.

--

David E. Ross
<http://www.rossde.com/>.

Don't ask "Why is there road rage?" Instead, ask
"Why NOT Road Rage?" or "Why Is There No Such
Thing as Fast Enough?"
<http://www.rossde.com/roadrage.html>

0 new messages