of     2   
chevron_rightchevron_rightchevron_right

blockoo
#59903740Wednesday, December 21, 2011 1:44 AM GMT

How can I change the position of a div element? Also, is there a way I can two or more of them overlap?
Spectrumw
#59904069Wednesday, December 21, 2011 1:48 AM GMT

For the first question; #div{position:absolute;top="0px";left="0px"}
blockoo
#59904628Wednesday, December 21, 2011 1:54 AM GMT

Thanks. Do you know the answer to the second question, or is that even possible?
AgentFirefox
Top 100 Poster
#59904795Wednesday, December 21, 2011 1:56 AM GMT

You cannot overlap elements. But you can use one div to contain two other divs. [div id="container"]   [div id="d1"] Stuff [/div]   [div id="d2"] Stuff2 [/div] [/div]
blockoo
#59905278Wednesday, December 21, 2011 2:03 AM GMT

Ah, ok. Thanks.
DerProgrammierer
#59906931Wednesday, December 21, 2011 2:23 AM GMT

You can do it with CSS, or am I completely way off?
swmaniac
#59908545Wednesday, December 21, 2011 2:45 AM GMT

@Agent style="position=relative;" I believe you can overlap elements with relative, fixed and absolute positioning.
AgentFirefox
Top 100 Poster
#59910486Wednesday, December 21, 2011 3:13 AM GMT

I've tried positioning before, and I couldn't get anything to overlap. It's worth a shot, though, since I tried it LONG ago. Also, when you use the style attribute, you do it like this: style="property: value;" Just for future reference.
darkkiller5555
#59912383Wednesday, December 21, 2011 3:45 AM GMT

I'm terrible at web designing..HTML, PHP, CSS, leave me out! But I'm pretty sure you need to use CSS for this.
swmaniac
#59912975Wednesday, December 21, 2011 3:53 AM GMT

*Reads own code* x_x Sorry, brain's fried. I'm taking finals.
DerProgrammierer
#59913416Wednesday, December 21, 2011 3:59 AM GMT

I'm fairly well I suppose at web design.
tobymeyrick
#59913719Wednesday, December 21, 2011 4:04 AM GMT

Whats a div?
pokemon771
#59913929Wednesday, December 21, 2011 4:07 AM GMT

@tobymey If you don't know then... DONT POST. ~= Welds stink.=~
tobymeyrick
#59914017Wednesday, December 21, 2011 4:09 AM GMT

This is a help forum!! was posting about help so shut up pokemon bot!!
DerProgrammierer
#59914948Wednesday, December 21, 2011 4:25 AM GMT

A div is a division in HTML.
blockoo
#59915721Wednesday, December 21, 2011 4:39 AM GMT

Another question, how would I make a border around my text?
DerProgrammierer
#59915987Wednesday, December 21, 2011 4:43 AM GMT

border: 1px solid #000000; I think. I dunno.
Spectrumw
#59916232Wednesday, December 21, 2011 4:47 AM GMT

[div style="border:1px solid #000000";] Your text here. [/div]
blockoo
#59916299Wednesday, December 21, 2011 4:48 AM GMT

That makes it around the box. I actually want it to follow the curves of the text.
Spectrumw
#59916423Wednesday, December 21, 2011 4:51 AM GMT

Use another font? Overlap another div with the same text in a bigger size and transparent background?
Merlin11188
#59918164Wednesday, December 21, 2011 5:27 AM GMT

p style="border: 1px solid blue;" Your text here. /p
Merlin11188
#59918190Wednesday, December 21, 2011 5:28 AM GMT

Oh nevermind. Didn't read two posts up (now three, maybe four). FloodCHECK
Spectrumw
#59918432Wednesday, December 21, 2011 5:33 AM GMT

@merlin Want jelly with that latetoast? olololol
blockoo
#59918614Wednesday, December 21, 2011 5:38 AM GMT

How can I make a div background transparent? Sorry, I only started learning HTML today :P
Spectrumw
#59918773Wednesday, December 21, 2011 5:42 AM GMT

[div style="background-color: transparent;]

    of     2   
chevron_rightchevron_rightchevron_right