Got a little techonology problem that you need fixed pronto? Post it here and we'll see what we can do.
Topic locked

Guild layout help...

Wed Jun 16, 2004 10:53 pm

Ok, someone told me how to code a guild layout once already...
But the guild I had with the coding got deleted by someone.
So... How do I code a guild layout?

Re: Guild layout help...

Wed Jun 16, 2004 10:58 pm

Adam wrote:Ok, someone told me how to code a guild layout once already...
But the guild I had with the coding got deleted by someone.
So... How do I code a guild layout?


Um, manually aligning or divs?

Re: Guild layout help...

Wed Jun 16, 2004 11:03 pm

Xalaxracer wrote:
Adam wrote:Ok, someone told me how to code a guild layout once already...
But the guild I had with the coding got deleted by someone.
So... How do I code a guild layout?


Um, manually aligning or divs?

That was not much help, because I don't know what they are!
*gets angry*

Thu Jun 17, 2004 12:28 am

Code:
<img src="URL OF LAYOUT">


<div style="position:absolute; top:???; left:???; height:???; width:???; overflow:auto">

TEXT CONTENT HERE


</div>


top:??? replace the ???'s with numbers it's adjusts the height of where the box will be positioned. Increase the number to lower the box, decrease to raise it.

left:??? ??? will postion how far left or right the box will lay. Increase the number to move it to the left decrease for the right


height: and width: set the size for the box of course ??? put in numbers


the hard part is playing with all the numbers until it's postitioned and sized to how you want it.


for each different box you want repeat the
Code:
<div style="position:absolute; top:???; left:???; height:???; width:???; overflow:auto">

TEXT CONTENT HERE


</div>


for each one.

Re: Guild layout help...

Thu Jun 17, 2004 2:22 am

Adam wrote:
Xalaxracer wrote:
Adam wrote:Ok, someone told me how to code a guild layout once already...
But the guild I had with the coding got deleted by someone.
So... How do I code a guild layout?


Um, manually aligning or divs?

That was not much help, because I don't know what they are!
*gets angry*


Okay, divs are MUCH more confusing, like my guild's layout. They work nomatter what your resolution, but regular alligning is resolution based.

Thu Jun 17, 2004 2:34 am

BeDeviled wrote:
Code:
<img src="URL OF LAYOUT">


<div style="position:absolute; top:???; left:???; height:???; width:???; overflow:auto">

TEXT CONTENT HERE


</div>


top:??? replace the ???'s with numbers it's adjusts the height of where the box will be positioned. Increase the number to lower the box, decrease to raise it.

left:??? ??? will postion how far left or right the box will lay. Increase the number to move it to the left decrease for the right


height: and width: set the size for the box of course ??? put in numbers


the hard part is playing with all the numbers until it's postitioned and sized to how you want it.


for each different box you want repeat the
Code:
<div style="position:absolute; top:???; left:???; height:???; width:???; overflow:auto">

TEXT CONTENT HERE


</div>


for each one.

Thanks for helping me a second time!
:)
Topic locked