View Full Version : Css gradient problem
fg123
07-27-2009, 01:14 AM
I'm using the css gradient effect. and it seems that if i put h2 tag in the paragraph, it dosent display as its supposed to. can anyone help me? i'm new to css. :confused:
bluewalrus
07-27-2009, 12:58 PM
You can't have an h2 tag in a paragraph. This <p><h2></p> is invalid. Put your code up and sure someone can show you how to do what your trying while making it valid.
fg123
07-27-2009, 05:04 PM
ohh. i get it. ok heres the code:
<html>
<head>
<title>Chat</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.shadow{
border:1px solid silver;
font:10pt arial;
position:relative;
display:inline;
background:white;
z-index:100
}
.shadow_inner{
overflow:hidden;
position:absolute;
top: -1000px;
filter:alpha(Opacity=10); /*modify to change the shade solidity/opacity, same as below*/
opacity:0.1; /*firefox 1.5 opacity*/
-moz-opacity:0.1; /*mozilla opacity*/
-khtml-opacity:0.1; /*opacity*/
z-index:10
}
</style>
<script type="text/javascript">
var gradientshadow={}
gradientshadow.depth=6 //Depth of shadow in pixels
gradientshadow.containers=[]
gradientshadow.create=function(){
var a = document.all ? document.all : document.getElementsByTagName('*')
for (var i = 0;i < a.length;i++) {
if (a[i].className == "shadow") {
for (var x=0; x<gradientshadow.depth; x++){
var newSd = document.createElement("DIV")
newSd.className = "shadow_inner"
newSd.id="shadow"+gradientshadow.containers.length+"_"+x //Each shadow DIV has an id of "shadowL_X" (L=index of target element, X=index of shadow (depth)
if (a[i].getAttribute("rel"))
newSd.style.background = a[i].getAttribute("rel")
else
newSd.style.background = "black" //default shadow color if none specified
document.body.appendChild(newSd)
}
gradientshadow.containers[gradientshadow.containers.length]=a[i]
}
}
gradientshadow.position()
window.onresize=function(){
gradientshadow.position()
}
}
gradientshadow.position=function(){
if (gradientshadow.containers.length>0){
for (var i=0; i<gradientshadow.containers.length; i++){
for (var x=0; x<gradientshadow.depth; x++){
var shadowdiv=document.getElementById("shadow"+i+"_"+x)
shadowdiv.style.width = gradientshadow.containers[i].offsetWidth + "px"
shadowdiv.style.height = gradientshadow.containers[i].offsetHeight + "px"
shadowdiv.style.left = gradientshadow.containers[i].offsetLeft + x + "px"
shadowdiv.style.top = gradientshadow.containers[i].offsetTop + x + "px"
}
}
}
}
if (window.addEventListener)
window.addEventListener("load", gradientshadow.create, false)
else if (window.attachEvent)
window.attachEvent("onload", gradientshadow.create)
else if (document.getElementById)
window.onload=gradientshadow.create
</script>
</head>
<body background="img/gradient.jpg">
<p class="shadow" style="display:block;" rel="#80C8FE"><img src="img/user-128x128.png"></p>
<hr width="100%">
<p class="shadow" style="display:block;" rel="#80C8FE"><h2>Friends</h2><br>abc<br>kg123<br></p>
</body>
</html>
:confused:
the h2 is in the 4th line from the bottom
fg123
07-28-2009, 12:07 AM
anyone?
tonyking
07-28-2009, 01:33 AM
You <h2>tags</h2> Should be before the paragraph (p) tags. Move them outside of the paragraph.
fg123
07-28-2009, 04:26 PM
i'll try it
fg123
07-28-2009, 04:31 PM
but i dont want every thing in the paragraph in headers
still confused :confused:
tonyking
07-28-2009, 05:12 PM
<h2>Text you want in the headers</h2>
<p>Text you want in the paragraph</p>
fg123
07-28-2009, 11:41 PM
thats almost what i want but read my code, the text in h2 has to be in the paragraph
bluewalrus
07-29-2009, 02:15 AM
use a span and give it the style that the h2 has.
<p>blah<span>bigger blah</span>blah</p>
fg123
07-29-2009, 09:50 PM
Case Closed! I could use the font tag! I hate myself for not thinking about that!
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.