CSS help

L

Lisa A

Is there a place to ask questions on using CSS style sheets? I just want to
have hover buttons that are linked to a style sheet, but can't find the
instructions on where to actually put the buttons I want to use for my
images? On my html page or a style sheet page?
Any good forums to look for?
thanks,
Lisa A
 
T

Trevor L.

You could try
http://groups.google.com/group/comp.infosystems.www.authoring.stylesheets?msg=subscribe
(This is the main page where you can subscribe and view the forum.) There
are lots of questions and answers on CSS - far too many for me to read very
carefully.

However, you may get an answer to your question here.

The buttons would be placed on your HTML page, and the styles in the style
sheet.
The style sheet is usually named style.css, but it doesn't have to be - all
you need is a link to it in the <head> section of your HTML:
<link rel="stylesheet" type="text/css" href="style.css"/> and change the
name of the file (after href=) to whatever you want.

All the style sheet will do is change the look of the button - you need JS
to actually get them to do anything. Perhaps FP will do this for you. (I
don't know as I program the JS by hand)

Good luck and post back if you have a more specific query.
 
M

Murray

This is an OK place, Lisa.

It's not really clear what you want from this question:
I just want to have hover buttons that are linked to a style sheet

Can you say more?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top