View Full Version : Several Things


Penguin_Otaku
12-23-2004, 04:54 PM
1) Can I make CSS image rollovers? If not I'll use Java.

2) Whats the code to make no text decoration when hovering over a text link?

Thanks. Reply ASAP.

pb&j
12-23-2004, 04:59 PM
1) you can only change a background image of an area on hover using css. to change an actual image, you need to use javascript.

2) to change the underline using hover, try this...

<style type="text/css">
a:hover {text-decoration:none;}
</style>

Penguin_Otaku
12-23-2004, 05:08 PM
1) Thanks, thats what I need to know. I kept getting the run around.

2) Thanks.

You're always helping me out in my time of need, PB&J, thank you.

pb&j
12-23-2004, 05:24 PM
You're always helping me out in my time of need, PB&J, thank you.
i only help out when i can.
quite welcome if it works at times :)

Penguin_Otaku
12-23-2004, 06:30 PM
Hm. Ok, in my main content box I've got it as a div. It's a pretty wide div, there's a lot of extra room. With each post is the image of the updater or submitter. But to the right of that image is blank space. When I try to type text next to it, its as low as the image is. Is there anway I can get text to wrap the image?

IMAGEIMAGEIMAGE
IMAGEIMAGEIMAGE
IMAGEIMAGEIMAGE
IMAGEIMAGEIMAGE (Text)

What I want:

IMAGEIMAGEIMAGE (text)
IMAGEIMAGEIMAGE (text)
IMAGEIMAGEIMAGE (text)

Its all one image.

kittycat
12-23-2004, 09:00 PM
align="left"
Add that to the image, it can also be set as 'right'.
If you want the CSS way it's
style="float: left;"

Penguin_Otaku
12-23-2004, 09:05 PM
Ok, I have a header then below that are my navigation links horrizontally. I have them Java rollovers. When I set the image (underneath the navigation) to float, left, it makes the first navigation image move elsewhere.

EDIT: I had two images named "image1"