Greenguy's Board


Go Back   Greenguy's Board > Programming & Scripting
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2007-01-20, 10:50 AM   #1
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
Quote:
Originally Posted by Useless Warrior View Post
I'd suggest that you not apply styles generically to tables and tds on your warning page.
Well fuck me, I'll never smile again

Quote:
Originally Posted by Useless Warrior View Post
th = table header. If you were building a table that was meant to be a chart of some sort, where the first row is comprised of "headings" or "titles" for the information which will follow below it, you'd use th instead of td in your first row.
Whew! Thanks! I've seen that in a few places and never put it together.

While I have your attention and everyone else is waking up, on this page:

http://www.best-wet-pussy.com/hairy-pussy/

there is a yellow line under the image on the right, in Firefox, but not in IE. How can I get rid of the yellow bar?

I also just noticed the SmutGremlins recip is all fucked up in Firefox...|confused|

Last edited by Licker4U; 2007-01-20 at 10:56 AM..
Licker4U is offline   Reply With Quote
Old 2007-01-20, 11:46 AM   #2
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
Licker, change your Doctype to <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> to resolve both of those issues. (Kill that 'loose' part.)
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2007-01-20, 11:50 AM   #3
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
Quote:
Originally Posted by Useless Warrior View Post
Licker, change your Doctype to <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> to resolve both of those issues. (Kill that 'loose' part.)
Well I'll be damned. That fixed it. Who says your useless? I guess I can smile again

Now, how can I get the text in my recip table off that nasty blue default color?
Licker4U is offline   Reply With Quote
Old 2007-01-20, 12:27 PM   #4
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
Quote:
Originally Posted by Licker4U View Post
Now, how can I get the text in my recip table off that nasty blue default color?
For that, I would simply add

a:link, a:active, a:visited, a:hover{
font-size: 14px;
color: #feff01;
font-family: Arial;
text-decoration: underline;
font-weight: bold
}
to your style sheet. That will take care of any link on that page which doesn't have its own specified class.

Where do I send the bill?
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2007-01-20, 12:49 PM   #5
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
Quote:
Originally Posted by Useless Warrior View Post
For that, I would simply add

a:link, a:active, a:visited, a:hover{
font-size: 14px;
color: #feff01;
font-family: Arial;
text-decoration: underline;
font-weight: bold
}
to your style sheet. That will take care of any link on that page which doesn't have its own specified class.

Where do I send the bill?

Happy happy joy joy!

That worked!

Bill? Hell, I'll take ya in and feed ya!

But damn the pages in that site sure have a lot of code in them. Is that the way I'm gonna have to build sites now? I'ld rather go back to straight html...
Licker4U is offline   Reply With Quote
Old 2007-01-20, 03:18 PM   #6
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
Quote:
Originally Posted by Licker4U View Post
But damn the pages in that site sure have a lot of code in them. Is that the way I'm gonna have to build sites now? I'ld rather go back to straight html...
Well you can drastically reduce the amount of code in the <head> by saving your CSS info onto it's own page, then referencing it in the <head> with something like this:
<link rel="stylesheet" type="text/css" href="lickers.css" />
So, in your free sites folder, you'd have five pages instead of four.
index.html
main.html
gallery1.html
gallery2.html
lickers.css

That way, you only have to alter the styles once to make site-wide changes. It makes it far simpler when you find yourself adding more and more styles.
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2007-01-20, 05:27 PM   #7
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
Quote:
Originally Posted by Useless Warrior View Post
Well you can drastically reduce the amount of code in the <head> by saving your CSS info onto it's own page, then referencing it in the <head> with something like this:
<link rel="stylesheet" type="text/css" href="lickers.css" />
So, in your free sites folder, you'd have five pages instead of four.
index.html
main.html
gallery1.html
gallery2.html
lickers.css

That way, you only have to alter the styles once to make site-wide changes. It makes it far simpler when you find yourself adding more and more styles.

So, I put the style sheet in Notepad and save it as lickers.css and upload it as that? And for the mirrors I can use ../(originalsite) to call the style sheet?
Licker4U is offline   Reply With Quote
Old 2007-01-20, 10:00 PM   #8
Maj. Stress
Progress rarely comes in buckets, it normally comes in teaspoons
 
Maj. Stress's Avatar
 
Join Date: Jun 2005
Location: Dark Side Of Naboo
Posts: 1,289
Quote:
Originally Posted by Useless Warrior View Post
Well you can drastically reduce the amount of code in the <head> by saving your CSS info onto it's own page, then referencing it in the <head> with something like this:
<link rel="stylesheet" type="text/css" href="lickers.css" />
So, in your free sites folder, you'd have five pages instead of four.
index.html
main.html
gallery1.html
gallery2.html
lickers.css

That way, you only have to alter the styles once to make site-wide changes. It makes it far simpler when you find yourself adding more and more styles.
The other benefit of using an external style sheet is page load times.
Maj. Stress is offline   Reply With Quote
Reply


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


All times are GMT -4. The time now is 12:32 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc