Click here to Skip to main content
16,015,707 members
Home / Discussions / Web Development
   

Web Development

 
QuestionStop Navigation in ASP Pin
abhaysurve21-Jun-06 20:40
abhaysurve21-Jun-06 20:40 
QuestionProblem with populating datagrid Pin
i@@21-Jun-06 16:37
i@@21-Jun-06 16:37 
Questionhighlight on link when move over Pin
campbells21-Jun-06 16:14
campbells21-Jun-06 16:14 
GeneralRe: highlight on link when move over Pin
i@@21-Jun-06 16:44
i@@21-Jun-06 16:44 
GeneralRe: highlight on link when move over Pin
campbells21-Jun-06 18:41
campbells21-Jun-06 18:41 
AnswerRe: highlight on link when move over Pin
Steve Echols21-Jun-06 19:37
Steve Echols21-Jun-06 19:37 
GeneralRe: highlight on link when move over Pin
campbells21-Jun-06 19:47
campbells21-Jun-06 19:47 
GeneralRe: highlight on link when move over [modified] Pin
Steve Echols21-Jun-06 20:03
Steve Echols21-Jun-06 20:03 
campbells wrote:
where should u put it in? actually my header and footer was design in seperate page, and my content page will link them together.


Put it in a global.css (or whatever name you want to call it) then add a statement like this in the head section of each content page:

<link rel="stylesheet" type="text/css" href="global.css" media="screen, print" />


campbells wrote:
but i found out that wat ever i do in my other page , when run on my content page those linked page follow the content page setting.


Yes, because each page is independent and knows nothing about the other pages.

campbells wrote:
actually is it possible i want to make like the footer style is different then the header and content page?


You can make styles apply to different classes like:

In css:

.header a { color: blue; }
.header a:hover { color: red; }

.footer a { color: green; }
.footer a:hover { color: yellow; }

In html:

<div class="header">
<a href="link1">Link 1</a>
</div>
<div class="footer">
<a href="link1">Link 1</a>
</div>


That's a very simple example. I suggest you google CSS or visit this site: http://www.csszengarden.com/[^]

[edit]Edited for formatting Blush | :O [/edit]
[edit]Edited again for formatting Blush | :O Blush | :O (Is there an easy way to show html as plain text?)[/edit]

- S
50 cups of coffee and you know it's on!

-- modified at 2:17 Thursday 22nd June, 2006
Questionweb-base database Pin
Droze21-Jun-06 4:59
Droze21-Jun-06 4:59 
AnswerRe: web-base database Pin
RichardGrimmer22-Jun-06 5:18
RichardGrimmer22-Jun-06 5:18 
QuestionQUERY: IE vs Firefox Pin
dhruba.bandopadhyay21-Jun-06 3:42
dhruba.bandopadhyay21-Jun-06 3:42 
AnswerRe: QUERY: IE vs Firefox Pin
Guffa21-Jun-06 6:25
Guffa21-Jun-06 6:25 
GeneralRe: QUERY: IE vs Firefox Pin
dhruba.bandopadhyay21-Jun-06 22:41
dhruba.bandopadhyay21-Jun-06 22:41 
AnswerRe: QUERY: IE vs Firefox Pin
Edbert P21-Jun-06 15:47
Edbert P21-Jun-06 15:47 
AnswerRe: QUERY: IE vs Firefox [modified] Pin
dhruba.bandopadhyay26-Jun-06 6:11
dhruba.bandopadhyay26-Jun-06 6:11 
GeneralIIS 5.1 in Win2000 [modified] Pin
MatthysDT21-Jun-06 0:31
MatthysDT21-Jun-06 0:31 
GeneralRe: IIS 5.1 in Win2000 Pin
Dario Solera21-Jun-06 0:59
Dario Solera21-Jun-06 0:59 
GeneralRe: IIS 5.1 in Win2000 Pin
MatthysDT21-Jun-06 1:05
MatthysDT21-Jun-06 1:05 
QuestionRe: IIS 5.1 in Win2000 Pin
MatthysDT21-Jun-06 21:05
MatthysDT21-Jun-06 21:05 
AnswerRe: IIS 5.1 in Win2000 Pin
Dario Solera21-Jun-06 21:14
Dario Solera21-Jun-06 21:14 
GeneralRe: IIS 5.1 in Win2000 Pin
Rama Krishna Vavilala21-Jun-06 0:59
Rama Krishna Vavilala21-Jun-06 0:59 
GeneralRe: IIS 5.1 in Win2000 Pin
Vasudevan Deepak Kumar21-Jun-06 2:08
Vasudevan Deepak Kumar21-Jun-06 2:08 
GeneralRe: IIS 5.1 in Win2000 Pin
Malcolm Smart21-Jun-06 2:10
Malcolm Smart21-Jun-06 2:10 
GeneralRe: IIS 5.1 in Win2000 Pin
Vasudevan Deepak Kumar21-Jun-06 2:13
Vasudevan Deepak Kumar21-Jun-06 2:13 
Questionquick start Pin
a_yosef20-Jun-06 23:51
a_yosef20-Jun-06 23:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.