css help NOT COUNTER STRIKE LOOLL

how can i for example link the left side of my picture to crossfire and the right side of the same picture to gamestv?
its just an example but id rly like to know how to do it:D
i guess i have to use div, right? but how
Comments
29
counter strike source?
css is nice game
imagemap?
heard i can do it with div as well
Parent
sure
put a div with z-index on top and add a onclick event
Parent
Delete de_dust2
whats the difference of mapping and div?:D
Parent
the map is a html tag
a solution with divs is self-made.
Parent
I don't think you can do this with CSS, unless you use two separate images of course. You have to use html.

With CSS it would be simplest to split the image in half, put them next to each other so it looks like they would be one big image and then make the two elements link onto different pages. If you know what I mean.
Parent
I could but can't help you right now.
google
oh its about counterstrike you say?
hihi, me so funneh!
Parent
gtfo wallonier
Parent
gtfo hollander
Parent
tenminste niet zo arm als jij bent, woont nog zeker in een doos?
Parent
kasteel > doos
Parent
ja dat hoef je mij niet uit te leggen, maar hoe is dat nou leven in een doos? :./
Parent
frans praten, kan je dat motherfucker ? NEE ?
hou je kanker bek dan
Parent
walen die kanker gebruiken om tegen hollanders te schelden!

waren ze allemaal maar zo :D
Parent
kanker hollander is kanker
e: kaashoofd n shit :pPpPPpp
Parent
2 divs with linked pic in each (pic sliced in 2 obviously :P)

<div id='pic1'><div id='pic2'></div></div>

now in css

#pic1{
float: left;
}

#pic2{
float: left;
}

think this works....
Back to top