DWT Questions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am having 2 problems with my new DWT site:

(1) All of the links in the header navigation work going from index.htm into
the inner pages, but the header links get flakey trying to move between inner
pages. I have re-linked them all in the .dwt pages, but when I preview the
site, some work and some don't.

(1) I am using an external stylesheet with Link Bars for the side
navigation. I am not using page themes. I call a class from my stylesheet
before the webot navigation code to format the links displayed below.
However, the link for the page you are actually on does not display in the
correct format. It looks like it is some default style (black, Times New
Roman). I have changed every imaginable default to try to alter this, but it
always displays the same way.

Any thoughts would be appreciated.

Thanks!
 
(1) URL?

For the second (1) Have you defined a style for plain text in the link
bar class? If not, the browser defaults will take over. The "page
you are on" is not a link, if you have only styled links.
 
I got the header links working. Don't know how.
Regarding the plain text links in my span class style, you're right that I
had only defined a:ling, a:active, a:hover, a:visited. What is the tag for
defining plain text? I have trid defining "p" within each class, but that
doesn't work. Do you know what tag it default to when it is not a link?

Thanks.
 
<style>
..navclass {color: black;font: normal 14px Arial,Helvetica,Sans-serif}
..navclass a{font: normal 14px Arial,Helvetica,Sans-serif}
..navclass a:link{color:blue;
etc.
</style>

<span class="navclass"><!--navigation here--></span>
 
That did it. Thanks!

Ronx said:
<style>
..navclass {color: black;font: normal 14px Arial,Helvetica,Sans-serif}
..navclass a{font: normal 14px Arial,Helvetica,Sans-serif}
..navclass a:link{color:blue;
etc.
</style>

<span class="navclass"><!--navigation here--></span>
 
Back
Top