Log In · Register

 
 
Closed TopicStart new topic
How do I add a section?
DemonicJay
post Jul 14 2009, 08:58 PM
Post #1


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



I want to add a "Information" Section like this band, under there display pic

http://www.myspace.com/jackketchkills

"Information

HOMETOWN: Sacramento, CA
MYSPACE: myspace.com/jackketchkills
WEBSITE: www.jackketchkills.com
BOOKING: nick@jackketchkills.com
LAYOUT: www.hosbak.com
LABEL: Transmedia Records"
 
Mikeplyts
post Jul 14 2009, 10:02 PM
Post #2


Mel Blanc was allergic to carrots.
*******

Group: Official Designer
Posts: 6,371
Joined: Aug 2008
Member No: 676,291



You just have to make a DIV container for it.

Put this in your CSS:
CODE
.CLASS_NAME {
position:absolute;
top:###px;
_top:###px;
left:50%;
_left:50%;
margin-left:-###px;
_margin-left:-###px;
width:###px;
height:###px;
}


Then, add this to your HTML:
CODE
<div class="CLASS_NAME">
YOUR CUSTOM SECTION CONTENT GOES HERE
</div>


That's probably a bit difficult though because you would have to make some spacing under the Display Pic area. I think you can just hide the whole left section and make one big DIV container for it. If you want to do that, take a look at Step 11 of this tutorial.
 
emberfly
post Jul 14 2009, 10:11 PM
Post #3


kthxbai
******

Group: Official Designer
Posts: 2,832
Joined: Feb 2008
Member No: 621,203



looks like you already have one.

ignore me. can't keep my mind off the premier :3
 
Mikeplyts
post Jul 14 2009, 10:18 PM
Post #4


Mel Blanc was allergic to carrots.
*******

Group: Official Designer
Posts: 6,371
Joined: Aug 2008
Member No: 676,291



Crud. Well, could what I said worked too? shrug.gif
 
emberfly
post Jul 14 2009, 10:20 PM
Post #5


kthxbai
******

Group: Official Designer
Posts: 2,832
Joined: Feb 2008
Member No: 621,203



only if he was using a div-overlay _unsure.gif
 
Mikeplyts
post Jul 14 2009, 10:21 PM
Post #6


Mel Blanc was allergic to carrots.
*******

Group: Official Designer
Posts: 6,371
Joined: Aug 2008
Member No: 676,291



ah, ok then.
 
DemonicJay
post Jul 14 2009, 10:34 PM
Post #7


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



U ARE THE NEXT JESUS :] <3

hmm, what if i want to put a banner over this table saying "Information"

also, the links behind the table are showing, how do i make tht go away? do i need to make a background?

and how do i adjust the table, like shift it a little more to the right cuz its kind of off

here is the layout

:] im so close to finishing im so happy!
Reason for edit: Please use [thumb] tags instead of [img] tags when posting large images. - Mike
 
DemonicJay
post Jul 14 2009, 10:51 PM
Post #8


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



how do i do tht? theres no color code in the code :[ and how do i shift it more to the right?
 
DemonicJay
post Jul 14 2009, 11:05 PM
Post #9


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



i cant get the background to go black >< idk where to put it, im sorry im new to this

this is my code so far

CODE
<div class="tg_left">
<a href='http://www.msplinks.com/MDFodHRwOi8vaW1nMTEuaW1hZ2VzaGFjay51cy9pbWcxMS84ODEyL2JhbmRwaDEuanBn'><img src='http://img11.imageshack.us/img11/8812/bandph1.jpg' border='0' alt='View More Pictures' /></a><br />

<center><table width="325" cellspacing="3" cellpadding="3">

<tr>
<td>Hometown:</td>
<td><div align="right">NYC/Long Island, NY</div></td>
</tr>

<tr>
<td>Myspace:</td>
<td><div align="right">myspace.com/viennafalls</div></td>
</tr>

<tr>
<td>Website:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Booking:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Layout:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Label:</td>
<td><div align="right"></div></td>
</tr>

</table></center>
</div>


putting it centered solves the moving it to the right problem, but i just need it to go black >< and also i want to put a banner right over it :[
Reason for edit: Please put codes in codeboxes. Thanks -Nat
 
Mickey
post Jul 15 2009, 04:09 AM
Post #10


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Try replacing that code with this:

CODE
<div class="tg_left">
<a href='http://www.msplinks.com/MDFodHRwOi8vaW1nMTEuaW1hZ2VzaGFjay51cy9pbWcxMS84ODEyL2JhbmRwaDEuanBn'><img src='http://img11.imageshack.us/img11/8812/bandph1.jpg' border='0' alt='View More Pictures' /></a><br />

<center><table width="325" cellspacing="3" cellpadding="3" bgcolor="000000">

<tr>
<td>Hometown:</td>
<td><div align="right">NYC/Long Island, NY</div></td>
</tr>

<tr>
<td>Myspace:</td>
<td><div align="right">myspace.com/viennafalls</div></td>
</tr>

<tr>
<td>Website:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Booking:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Layout:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Label:</td>
<td><div align="right"></div></td>
</tr>

</table></center>
</div>

That should give it a black background.
 
DemonicJay
post Jul 15 2009, 08:48 AM
Post #11


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



QUOTE(Mike @ Jul 15 2009, 05:09 AM) *
Try replacing that code with this:

CODE
<div class="tg_left">
<a href='http://www.msplinks.com/MDFodHRwOi8vaW1nMTEuaW1hZ2VzaGFjay51cy9pbWcxMS84ODEyL2JhbmRwaDEuanBn'><img src='http://img11.imageshack.us/img11/8812/bandph1.jpg' border='0' alt='View More Pictures' /></a><br />

<center><table width="325" cellspacing="3" cellpadding="3" bgcolor="000000">

<tr>
<td>Hometown:</td>
<td><div align="right">NYC/Long Island, NY</div></td>
</tr>

<tr>
<td>Myspace:</td>
<td><div align="right">myspace.com/viennafalls</div></td>
</tr>

<tr>
<td>Website:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Booking:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Layout:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Label:</td>
<td><div align="right"></div></td>
</tr>

</table></center>
</div>

That should give it a black background.



it didnt do anything :[

how do i create a new DIV layer?
 
Mickey
post Jul 15 2009, 09:30 AM
Post #12


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



How about this:

CODE
<div class="tg_left" style="background-color:000000;">
<a href='http://www.msplinks.com/MDFodHRwOi8vaW1nMTEuaW1hZ2VzaGFjay51cy9pbWcxMS84ODEyL2JhbmRwaDEuanBn'><img src='http://img11.imageshack.us/img11/8812/bandph1.jpg' border='0' alt='View More Pictures' /></a><br />

<center><table width="325" cellspacing="3" cellpadding="3" bgcolor="000000">

<tr>
<td>Hometown:</td>
<td><div align="right">NYC/Long Island, NY</div></td>
</tr>

<tr>
<td>Myspace:</td>
<td><div align="right">myspace.com/viennafalls</div></td>
</tr>

<tr>
<td>Website:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Booking:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Layout:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Label:</td>
<td><div align="right"></div></td>
</tr>

</table></center>
</div>
 
DemonicJay
post Jul 15 2009, 09:36 AM
Post #13


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



still no :[ IODSOFHI092HEF02HEF WHY ISNT IT WORKING!
 
Mickey
post Jul 15 2009, 09:39 AM
Post #14


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Post all of your codes.
 
DemonicJay
post Jul 15 2009, 09:43 AM
Post #15


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



CODE
<div class="tg_left">
<a href='http://www.msplinks.com/MDFodHRwOi8vaW1nMTEuaW1hZ2VzaGFjay51cy9pbWcxMS84ODEyL2JhbmRwaDEuanBn'><img src='http://img11.imageshack.us/img11/8812/bandph1.jpg' border='0' alt='View More Pictures' /></a><br />

<center><table width="325" cellspacing="3" cellpadding="3">

<tr>
<td>Hometown:</td>
<td><div align="right">NYC/Long Island, NY</div></td>
</tr>

<tr>
<td>Myspace:</td>
<td><div align="right">myspace.com/viennafalls</div></td>
</tr>

<tr>
<td>Website:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Booking:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Layout:</td>
<td><div align="right"></div></td>
</tr>

<tr>
<td>Label:</td>
<td><div align="right"></div></td>
</tr>

</table></center>
</div>


is the code for the left section [display pic, custom information section] which i cant get the background of it to go black
Reason for edit: Please use [codebox] tags instead of [code] tags when posting longer codes. - Mike
 
Mickey
post Jul 15 2009, 10:09 AM
Post #16


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Add this to your stylesheet codes:

CODE
.tg_left table, .tg_left td {background-color:000000!important;}
 
DemonicJay
post Jul 15 2009, 10:13 AM
Post #17


Member
**

Group: Member
Posts: 21
Joined: Jul 2009
Member No: 735,396



<333 IT WORKED!
 
Mickey
post Jul 15 2009, 10:19 AM
Post #18


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Sweet. Topic closed & moved.
 

Closed TopicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members: