;;;I must insert the include and div's in inÃcio.asp, someone know how do this?
mmmmm, forgive me if I have mis understood your question, cant be this simple, can it:
an include:
Divs:
Do you need to place your div tags in your style sheet? If so, why? if not place them in your page direct. Im not even sure you can place divs inside a .css - I know you can place the class for the div in the .css but have never seen div's in there. I have done it like so:
*.css page:
#layerName
{
height: 400;
left: 48%;
position: absolute;
top: 110px;
width: 350;
visibility: hidden;
z-index:2;
}
The page where the div is:
<div name="layer6" id="layer6">
content here
</div>
Using that method you can place the div anywhere on your page. it does not have top be positioned, this is specified in the .css file as is the visibiity (in the example above)
;;There's a second alternative
Do you want your roblem solved or are you looking for an alternative? If the later what are you trying to achieve? If I may, a bit of my personal opinion; Only use frames unless you have a good reason to do so, IMO there are very few. Frames have many many draw backs unless coded very well. Do you mind me asking why you choose to use frames? If you would like to see the reasons why they can be so problematic type 'why are frames so bad' into Google - that is said constructivley from my experience.
Wind is your friend
Matt
|