Ugh, I hate to even post this, because this should be something very simple. It just won't work for me though.
I have a div(welcomebox) that has it's background image specified within the html, not css. This is because I want to have a class(intro) specified to it for the purpose of jquery.
Within the div I have an H2 heading and a paragraph. Within this div I also want to add in a little X image that can be clicked-- again for the purpose of jquery. I have tried to add in this X image in the html and tried to floatRight it. Did not work. I have tried to give this X image it's own div and added it within the above mentioned div and gave it position:relative. Did not work. I also messed around with z-index . I just can't get it to work. I must be doing something wrong. Anyone have any ideas?
*****************************************************************
<div id="welcomebox">
<img src="welcomebox.png" alt="Online home." class="intro" />
<h2>Welcome to Preeminent Productions!</h2>
<p>;kua;asklgn;ayupeuranglaiuea[ne</p>
</div>
***********************************************************
#welcomebox {
height:130px;
width:402px;
padding-right:15px;
padding-bottom:15px;
float:right;
bottom:-435px;
right:70px;
position:relative;
}

