• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

CSS help

cuemasterfl

Supreme [H]ardness
Joined
Jul 5, 2001
Messages
4,181
I just started learning CSS, but what I want to do is be able to replicate those little presentation boxes you see on msn.com (the ones that contain the bullets). Can anyone help?
 
Code:
<style>
div.presentation_top {
	border : 1px solid #0033ff;
	background-color : #99ccff;
	width : 300px;
	color : navy;
	padding-left : 3px
	}
div.presentation_cont {
	border-bottom : 1px solid #0033ff;
	border-right : 1px solid #0033ff;
	border-left : 1px solid #0033ff;
	width : 300px;
	padding-left : 5px
	}
</style>

<div class="presentation_top">Blah</div>
<div class="presentation_cont">
	foobar
</div>

Basic but I'm hurrying to get off work :D
 
That's pretty good :) I wasn't sure if it could be done in one Div or if it had to be 2. I guess 2 it is. Thanks a lot :)
 
Back
Top