|
caz -> RE: Hyperlink colors not working properly (2/11/2008 7:49:26)
|
Did you remove the formatting only and leave the <body> tag alone? The fact that you are including a page, in this case the menu won't affect anything but you do link to the external css file on the menu.htm and strictly speaking this is not necessary. Once a page is included it inherits the style of the page it's included on, maybe that was causing your problem. Try removing the stylesheet link on the menu page. However you do have a lot of inline styling that will need to be removed if you are moving to using external stylesheets, in addition you will also need to use a Doc Type declaration so that you have some base reference point for checking your css validity (it makes things a whole lot easier [;)]) FP is quite capable of producing valid web pages, but you do have to learn some different ways of working with it. Using Doc Types with FP CSS and FP A quick overview of using CSS in FP Linking a Style Sheet to a Page in FP In Page view, open the page that you want to link to the style sheet. 1. On the Format menu, click Style Sheet Links. 2. In the URL list, select the style sheets that you want to link to the page. 3. Click OK. 4. If you look at the code in HTML view, it will look like this: <link rel="stylesheet" type="text/css" href="sitestyle.css"> Tips * If the URL list does not contain any style sheets, click Add. In the Select Style Sheet dialog box, browse to the style sheet that you want to add to the list and then click OK. * To link all the pages in your Web site to the selected style sheets in the URL list, select All Pages. * To remove a style sheet from the URL list, select it and click Remove. * To change the cascading order of the style sheets in the URL list, select the style sheet that you want to move and then click Move Up or Move Down. Note The URL list is the order in which the style sheets will cascade, so be certain that the order you see is the order in which you want your style sheets to cascade. Other MS references http://tinyurl.com/2594u9 http://tinyurl.com/2f8adb http://tinyurl.com/336834
|
|
|
|