Go Back   Winamp Forums > Community Center > General Discussions

Reply
Thread Tools Search this Thread Display Modes
Old 20th December 2004, 19:20   #1
kingo'mountain
in need of banned aid
 
kingo'mountain's Avatar
 
Join Date: Mar 2001
Location: over the rainb... uh... nevermind
Posts: 2,712
Help with tables (HTML)

is there a way to write text inside tables when theres an image behind?

[edit] im thinking CSS, confirm please [/edit]
kingo'mountain is offline   Reply With Quote
Old 20th December 2004, 19:33   #2
c2R
Stereotype?
(Forum King)
 
c2R's Avatar
 
Join Date: Jan 2001
Location: Ware, England
Posts: 3,511
Can you not just apply a background colour to the cell, or use a colour of text that shows up? Am I missing something. Probably...
c2R is offline   Reply With Quote
Old 20th December 2004, 19:39   #3
kingo'mountain
in need of banned aid
 
kingo'mountain's Avatar
 
Join Date: Mar 2001
Location: over the rainb... uh... nevermind
Posts: 2,712
ok, ill explain, im using a GuiStuff interface for my site, it has a long header graphic.... instead of editing it in a GFX editor, i thought about typing text on it

can HTML or CSS do that?
kingo'mountain is offline   Reply With Quote
Old 20th December 2004, 19:41   #4
c2R
Stereotype?
(Forum King)
 
c2R's Avatar
 
Join Date: Jan 2001
Location: Ware, England
Posts: 3,511
Like this:

http://www.tonwell.net


You could not have a background colour to the table, and just have plain text on an image...
c2R is offline   Reply With Quote
Old 20th December 2004, 19:42   #5
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
just <table background="http://filenamehere.jpg">


"Oh BTW. How do you say 'stop throwing shit at the side of my house' in spanish?"
Check out my music
squakMix is offline   Reply With Quote
Old 20th December 2004, 19:45   #6
c2R
Stereotype?
(Forum King)
 
c2R's Avatar
 
Join Date: Jan 2001
Location: Ware, England
Posts: 3,511
Quote:
Originally posted by squakMix
just <table background="http://filenamehere.jpg">
True, but my code above dynamically resizes the picture dependent on screen size (o;
c2R is offline   Reply With Quote
Old 20th December 2004, 19:48   #7
kingo'mountain
in need of banned aid
 
kingo'mountain's Avatar
 
Join Date: Mar 2001
Location: over the rainb... uh... nevermind
Posts: 2,712
*starts up photoshop*

thanks guys
kingo'mountain is offline   Reply With Quote
Old 20th December 2004, 19:49   #8
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
Why the frowny face? I told you how to put text over an image in a table.


If you want it in a specific td (or tr) just go <td background="http://asdas.dasd">


"Oh BTW. How do you say 'stop throwing shit at the side of my house' in spanish?"
Check out my music
squakMix is offline   Reply With Quote
Old 20th December 2004, 19:52   #9
c2R
Stereotype?
(Forum King)
 
c2R's Avatar
 
Join Date: Jan 2001
Location: Ware, England
Posts: 3,511
Quote:
Originally posted by kingo'mountain
*starts up photoshop*

thanks guys

)o: I no understand...

You could either use layers, or you could use tables like squakmax suggests... Depends whether you need the image to dynamically resize when people with different screen sizes view it.

Or do we have the wrong end of the stick about what you're wanting?
c2R is offline   Reply With Quote
Old 20th December 2004, 19:58   #10
kingo'mountain
in need of banned aid
 
kingo'mountain's Avatar
 
Join Date: Mar 2001
Location: over the rainb... uh... nevermind
Posts: 2,712
ok, you didnt understand me then, the frowny face was because i got a little dissapointed, nothing against any of you

[edit]

1.)Does layers relate to CSS?

2.) squak, ill try your suggestion now

[/edit]

[edit2]

hey squak, it worked!!!! i owe you one

[/edit2]
kingo'mountain is offline   Reply With Quote
Old 20th December 2004, 20:02   #11
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Tn
Posts: 8,763
Send a message via AIM to ryan
Quote:
Originally posted by c2R
)o: I no understand...

You could either use layers, or you could use tables like squakmax suggests... Depends whether you need the image to dynamically resize when people with different screen sizes view it.

Or do we have the wrong end of the stick about what you're wanting?
HTML layers aren't in the w3c specification afaik.

You could put them both inside of a div, and absolutely position the image\text inside of the div.

That's probably not the best solution, but I really don't understand what the hell you're trying to do.

You could also put them inside a div, and make the background of the div the image, and just put text inside the div.

<style type="text/css">
.header {
background-image: url("blah.jpg") no-repeat;
}
</style>
...
<div class="header">...</div>
ryan is offline   Reply With Quote
Old 20th December 2004, 20:10   #12
c2R
Stereotype?
(Forum King)
 
c2R's Avatar
 
Join Date: Jan 2001
Location: Ware, England
Posts: 3,511
Quote:
Originally posted by ryan
HTML layers aren't in the w3c specification afaik.

You could put them both inside of a div, and absolutely position the image\text inside of the div.

That's probably not the best solution, but I really don't understand what the hell you're trying to do.

You could also put them inside a div, and make the background of the div the image, and just put text inside the div.

<style type="text/css">
.header {
background-image: url("blah.jpg") no-repeat;
}
</style>
...
<div class="header">...</div>
I think I meant a DIV rather than using layers... *looks at code* - yeah..
c2R is offline   Reply With Quote
Old 20th December 2004, 20:21   #13
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
Quote:
Originally posted by kingo'mountain
ok, you didnt understand me then, the frowny face was because i got a little dissapointed, nothing against any of you

[edit]

1.)Does layers relate to CSS?

2.) squak, ill try your suggestion now

[/edit]

[edit2]

hey squak, it worked!!!! i owe you one

[/edit2]


"Oh BTW. How do you say 'stop throwing shit at the side of my house' in spanish?"
Check out my music
squakMix is offline   Reply With Quote
Old 20th December 2004, 20:38   #14
kingo'mountain
in need of banned aid
 
kingo'mountain's Avatar
 
Join Date: Mar 2001
Location: over the rainb... uh... nevermind
Posts: 2,712
an heres the result, i got TONS to still work on...

see the header on top? i planted the text like you said
kingo'mountain is offline   Reply With Quote
Old 20th December 2004, 20:39   #15
kingo'mountain
in need of banned aid
 
kingo'mountain's Avatar
 
Join Date: Mar 2001
Location: over the rainb... uh... nevermind
Posts: 2,712
attachment:
Attached Images
File Type: jpg site.jpg (82.0 KB, 37 views)
kingo'mountain is offline   Reply With Quote
Old 20th December 2004, 21:31   #16
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Tn
Posts: 8,763
Send a message via AIM to ryan
Yay, you used tables and you're mixing layout with markup.

ryan is offline   Reply With Quote
Old 20th December 2004, 21:34   #17
xzxzzx
Forum King
 
xzxzzx's Avatar
 
Join Date: Aug 2002
Posts: 7,267
Quote:
Originally posted by ryan
Yay, you used tables and you're mixing layout with markup.

Ryan and I are now planning your death. Stay tuned for up-to-the-minute notices.

Freedom of speech is the basic freedom of humanity. When you've lost that, you've lost everything.
1\/\/4y 34|<$p4y 1gp4y 33714y, 0d4y 0uy4y? | Roses are #FF0000; Violets are #0000FF; chown -R ${YOU} ~/base
The DMCA. It really is that bad. : Count for your life.
xzxzzx is offline   Reply With Quote
Old 20th December 2004, 21:44   #18
MaTTFURY
Major Dude
 
MaTTFURY's Avatar
 
Join Date: Jun 2004
Location: Australia,
Posts: 1,352
erm, notice: DONT USE TABLES... use DIV + CSS or aT LEAST PHP!!! + CSS... TABLES AREN'T FLEXIBLE... TO SOME PEOPLE AT 800x600 this wouldn't fit right..!!!!

i am not normal, no really.
MaTTFURY is offline   Reply With Quote
Old 20th December 2004, 21:50   #19
mikm
Major Dude
 
mikm's Avatar
 
Join Date: May 2001
Location: 2001:4978:20f::/48
Posts: 1,244
PHP is a server-side programming language, not a way of formatting websites. It is generally never needed unless you have a highly dynamic website (like a blog or forum/message board system).

Plus, you don't have to shout for somebody to hear you over the Internet.

powered by Câ‚‚Hâ‚…OH | eff | aclu
mikm is offline   Reply With Quote
Old 20th December 2004, 21:51   #20
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Tn
Posts: 8,763
Send a message via AIM to ryan
Uhh..

You can't make a webpage without HTML, matt. PHP + CSS wouldn't get you anywhere. PHP is a server side scripting language.

//damnit
ryan is offline   Reply With Quote
Old 20th December 2004, 21:55   #21
mikm
Major Dude
 
mikm's Avatar
 
Join Date: May 2001
Location: 2001:4978:20f::/48
Posts: 1,244

Anybody want make a little bet that matt doesn't know how to make a worthwhile program in PHP (or any standard* programming language for that matter)?
(I don't know PHP myself, but I don't make it sound like I do)

*standard = widely used (C/++/#, Java, PHP, Perl, Python, etc.)

powered by Câ‚‚Hâ‚…OH | eff | aclu
mikm is offline   Reply With Quote
Old 20th December 2004, 22:20   #22
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Tn
Posts: 8,763
Send a message via AIM to ryan
If only "die()" worked on people.
ryan is offline   Reply With Quote
Old 20th December 2004, 23:24   #23
MaTTFURY
Major Dude
 
MaTTFURY's Avatar
 
Join Date: Jun 2004
Location: Australia,
Posts: 1,352
ohh well i guess html is the base like xml is an communication transfers...

i am not normal, no really.
MaTTFURY is offline   Reply With Quote
Old 21st December 2004, 00:03   #24
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
"is an communication transfers..."

1: is A (not an because the next word doesnt start in a consonant).
2: You cant go from singular ("A" or "An") to plural ("transfers")


"Oh BTW. How do you say 'stop throwing shit at the side of my house' in spanish?"
Check out my music
squakMix is offline   Reply With Quote
Old 21st December 2004, 00:20   #25
101
Major Dude
 
101's Avatar
 
Join Date: Jul 2004
Location: Argentina
Posts: 828
Send a message via ICQ to 101
Quote:
"is an communication transfers..."

1: is A (not an because the next word doesnt start in a consonant).
Whoops.

Words are very unnecessary, they can only do harm, so enjoy the silence - Depeche Mode
Firemonger Project: Help spread Firefox
101 is offline   Reply With Quote
Old 21st December 2004, 00:30   #26
MaTTFURY
Major Dude
 
MaTTFURY's Avatar
 
Join Date: Jun 2004
Location: Australia,
Posts: 1,352
Why is another persons grammar SOOO important?

i am not normal, no really.
MaTTFURY is offline   Reply With Quote
Old 21st December 2004, 00:56   #27
shakey_snake
Forum Domo
 
shakey_snake's Avatar
 
Join Date: Jan 2004
Location: Everyone, get over here for the picture!
Posts: 4,329
To properly communicate ideas.


elevatorladyelevatorladyelevatorladyelevatorladyelevatorladylevitateme
shakey_snake is offline   Reply With Quote
Old 21st December 2004, 00:59   #28
MaTTFURY
Major Dude
 
MaTTFURY's Avatar
 
Join Date: Jun 2004
Location: Australia,
Posts: 1,352
Ok, you win I'm just lazy....

i am not normal, no really.
MaTTFURY is offline   Reply With Quote
Old 21st December 2004, 03:58   #29
Mattress
Forum King
 
Mattress's Avatar
 
Join Date: Jun 2003
Location: Milwaukee
Posts: 4,577
use tables, screw standards
Mattress is offline   Reply With Quote
Reply
Go Back   Winamp Forums > Community Center > General Discussions

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump