It appears you have not yet registered with our community. To register please click here...

HOME  |  FORUM  |  CONTACT US     

Old Skool Anthemz  

 
3 in 1 Search - Gemm, Netsounds & Musicstack
Search over 60 million vinyl/cd's for sale now! (more info)
 

Go Back   Old Skool Anthemz > Forum > General > Help

Register FAQ Members List Calendar Arcade Search Today's Posts Mark Forums Read





Reply
 
LinkBack Thread Tools Rate Thread Display Modes
  #1  
Old 12th December 2002, 04:25 PM
Board Addict
 

Join Date: Oct 2001
Location: Fundling around in the dark.....
Posts: 3,663
Send a message via ICQ to The Frog Meister
Post Html

Tis me again..... This time on the easy track of HTML

Rite... I have inserted a table ( the size of the page as you do!) and I want to place a VERTICAL line up on edge... I know the border command but this does the whole round of the frame

I'm looking for a way to only fill in the right hand side one..... Any ideas anyone?????

thank you

PS My sign has run away
__________________


Welcome to Life's Crematorium...... You kill them we grill them!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 12th December 2002, 05:06 PM
Board Addict
 

Join Date: Oct 2001
Location: Sheffield / Astley
Gender: Male
Posts: 3,343
Send a message via MSN to fugjostle
Not sure what your trying to do but the options for the table are:

align - Aligns the table
bgcolor - Specifies the background colour of the table
border - specifies the width of the border
cellpadding - Specifies the space between the cell walls and contents
cellspacing - Specifies the space between cells
width - width of the table
rules - for how the borders will appear inside the table
frame - for how the border will appear outside the box

You can set the colour of the border using:

Bordercolor
Bordercolordark
Bordercolorlight

only MSIE recognises the dark and light ones.

Most of these can be used with the TR and TD fields as well.

<table width="50%" border="1" cellpadding="3" cellspacing="1" rules=rows frame=box>

^ this will create a table that is just rows

<table width="50%" border="1" cellpadding="3" cellspacing="1" rules=hsides frame=box>

^ will produce lines by removing the vertical sides

<table width="50%" border="1" cellpadding="3" cellspacing="1" rules=cols frame=box>

^ etc etc

<table width="50%" border="1" cellpadding="3" cellspacing="1" rules=cols frame=vsides>

^ produces something like your after I think?:

x x x
x x x
x x x
x x x
x x x
x x x
x x x

and it gets even more complex once you start using "rules=groups" which mean you can then use <colgroup> and other tags to cut it down.

I'll have a play tonight and try and create what your after but I hope I given you enuff to have a good stab at it yourself.

---
fug
__________________

Fug's pearl necklace of wisdom:
- "A cult is a religion with no political power"
- "Age is a high price to pay for maturity"
- "Always remember you're unique. Just like everyone else"
- "A gross ignoramus: 144 times worse than an ordinary ignoramus"
- "Depression is merely anger without enthusiasm"
- "All it takes to fly is to hurl yourself at the ground... and miss"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 12th December 2002, 05:25 PM
Speedy Poster
 

Join Date: Oct 2002
Location: South East London
Posts: 501
would it not be easier just to create a table in Wordand then save it has html???

Or is that cheating?
__________________
I really need a better signature than this - MDMA must have destroyed my creativity
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 12th December 2002, 05:35 PM
Board Addict
 

Join Date: Oct 2001
Location: Fundling around in the dark.....
Posts: 3,663
Send a message via ICQ to The Frog Meister
RipleyPillwall,.... That is not cheating.... that is playing with fire

The problem is all within the code and the way it is written... If you use an editor the result is REALLY shite!


Fuggles m8

I want to create a Vertical line.

the HR command gives a horizantal line.. I want to make a veritcal one....

Have a look at www.theraefamily.co.uk/samoreau

on the left is a quick list I want to put a line verticaly on the left..... does that make sense?

oh.. and the form command for a redirect please
__________________


Welcome to Life's Crematorium...... You kill them we grill them!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 13th December 2002, 02:38 AM
Contributing Member
 

Join Date: Oct 2001
Location: Near beaches, bars and rollercoasters!
Posts: 2,769
Easy - set up a table width 95%, height 100% 2 columns 1 row.

Put in a transparent pixel 1pxl wide in the left column. set the column width to 1px and the background colour to black.

Valign the right column to the top and then drop in the next table to continue building up the page.
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 13th December 2002, 09:04 AM
Board Addict
 

Join Date: Oct 2001
Location: Sheffield / Astley
Gender: Male
Posts: 3,343
Send a message via MSN to fugjostle
Hell !! I didn't realise you just wanted a vertical line :-/

Cheat and use a gif... create a 3x3 pixel black square (or other colour) then use the width and height tags to stretch it. The following tag works fine for a nice line. Increase height to make the line longer:

<img src=images/line.gif width=2 height=300>

Not sure what you mean by form redirects tho.

---
fug
__________________

Fug's pearl necklace of wisdom:
- "A cult is a religion with no political power"
- "Age is a high price to pay for maturity"
- "Always remember you're unique. Just like everyone else"
- "A gross ignoramus: 144 times worse than an ordinary ignoramus"
- "Depression is merely anger without enthusiasm"
- "All it takes to fly is to hurl yourself at the ground... and miss"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 13th December 2002, 09:39 AM
Board Addict
 

Join Date: Oct 2001
Location: Fundling around in the dark.....
Posts: 3,663
Send a message via ICQ to The Frog Meister
cheers fuggs and tiggs

for the forms redirect is when you arrive at an obsolete page and it redirects you to a new one
__________________


Welcome to Life's Crematorium...... You kill them we grill them!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 13th December 2002, 10:41 AM
Board Addict
 

Join Date: Oct 2001
Location: Sheffield / Astley
Gender: Male
Posts: 3,343
Send a message via MSN to fugjostle
Okies.. but its not a form direct you want but a meta refresh. Something like this should work well:


<html>
<head>
<meta HTTP-EQUIV="refresh" CONTENT="2;URL=http://www.newsite.com/index.htm">
<title>This page has moved</title>
</head>

<body>
<h3>This page has moved. If your browser does not automatically redirect you in a few seconds, click <a href="http://www.newsite.com/index.htm">here</a> to go to the new page.
</h3>
</body>
</html>


If you haven't guessed... "CONTENT="2;URL=http://www.newsite.com/index.htm" - the number is the number of seconds to wait before going to what is defined in the URL.

---
Fug
__________________

Fug's pearl necklace of wisdom:
- "A cult is a religion with no political power"
- "Age is a high price to pay for maturity"
- "Always remember you're unique. Just like everyone else"
- "A gross ignoramus: 144 times worse than an ordinary ignoramus"
- "Depression is merely anger without enthusiasm"
- "All it takes to fly is to hurl yourself at the ground... and miss"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 13th December 2002, 11:29 AM
Board Addict
 

Join Date: Oct 2001
Location: Fundling around in the dark.....
Posts: 3,663
Send a message via ICQ to The Frog Meister
cheers mate that is a great help

I have a front page for the website and I want them to see it then be automaticaly taken into the site......

and it works a treat... your are a Star!!!! it's not true what they say about you
__________________


Welcome to Life's Crematorium...... You kill them we grill them!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 08:01 AM.




Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0

- Dedicated to the memory of Anthony ROCK-XC -