Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 01-03-2005, 05:06 PM   #1
Jimmie
Confirmed User
 
Join Date: Dec 2003
Location: Ft Worth TX!
Posts: 872
CSS Problems in FIREFOX

hey, was wondering if anyone was having CSS problems in FireFox. I link to my css file like this:
Code:
<link rel="stylesheet" type="text/css" href="stylesheet.css">
and FireFox doesnt render it, or however u say it. I like to link to the css instead of having it all on the page, so SE's dont have to sift thru all of it when spidering the page.

Anyone have this problem, or know how to fix it? thanks in advance!
Jimmie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 05:07 PM   #2
xclusive
Too lazy to set a custom title
 
Join Date: Apr 2004
Location: Buffalo, NY
Posts: 35,218
Yeah i've been having similar problems over the last week or so very strange
__________________

I support MediumPimpin.com / Shemp's Outlawtgp.com /


xclusive is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 05:10 PM   #3
Jimmie
Confirmed User
 
Join Date: Dec 2003
Location: Ft Worth TX!
Posts: 872
i cant figure out why it isnt working.. maybe firefox doesnt have css capabilities unless its right there in the html code.?
Jimmie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 05:15 PM   #4
prezzz
Confirmed User
 
Industry Role:
Join Date: Jul 2004
Posts: 959
The CSS file itself is probably faulty. Post it here or post a link to it.
prezzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 05:17 PM   #5
flashfire
ICQ 1 6 7 8 5 3 4 9 2
 
Join Date: Feb 2003
Posts: 13,098
I have had similar problems with firefox and have yet to find a solution...post if you get it working
flashfire is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 05:24 PM   #6
Jimmie
Confirmed User
 
Join Date: Dec 2003
Location: Ft Worth TX!
Posts: 872
Quote:
Originally Posted by prezzz
The CSS file itself is probably faulty. Post it here or post a link to it.
Code:
<style type="text/css">
<!--
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
body {
	margin-left: 0px;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
}
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #666666;
}
a:hover {
	text-decoration: underline;
	color: #990000;
}
a:active {
	text-decoration: none;
	color: #666666;
}
-->
</style>
Jimmie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 05:45 PM   #7
prezzz
Confirmed User
 
Industry Role:
Join Date: Jul 2004
Posts: 959
This should work:
Code:
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
}
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #666666;
}
a:hover {
	text-decoration: underline;
	color: #990000;
}
a:active {
	text-decoration: none;
	color: #666666;
}
-->
</style>
prezzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 05:51 PM   #8
dirtysouth
Confirmed User
 
Join Date: Jul 2003
Location: Mobtown
Posts: 2,613
Try this:

Code:
<style type="text/css" media="screen">@import "http://www.whatever.com/style.css";</style>
__________________
no sig
dirtysouth is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 06:07 PM   #9
tyler86ed
Confirmed User
 
Join Date: Jan 2004
Location: California
Posts: 543
Quote:
Originally Posted by prezzz
This should work:
Code:
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
}
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #666666;
}
a:hover {
	text-decoration: underline;
	color: #990000;
}
a:active {
	text-decoration: none;
	color: #666666;
}
-->
</style>
Well if thats an external css take out the html <style> tags. You can't use HTML in a .CSS file

That would work if it was an internal CSS.
__________________

Check out all our new fresh FETISH sites, Tons of hosted galleries and fresh new content.
tyler86ed is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 06:12 PM   #10
prezzz
Confirmed User
 
Industry Role:
Join Date: Jul 2004
Posts: 959
Haha. Oh damn, and I know something's wrong about that file and just couldn't say what was that. Good eye, tyler. And apparently I need to get some more coffee
prezzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 06:13 PM   #11
tyler86ed
Confirmed User
 
Join Date: Jan 2004
Location: California
Posts: 543
Quote:
Originally Posted by prezzz
Haha. Oh damn, and I know something's wrong about that file and just couldn't say what was that. Good eye, tyler. And apparently I need to get some more coffee
__________________

Check out all our new fresh FETISH sites, Tons of hosted galleries and fresh new content.
tyler86ed is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 07:28 PM   #12
Jimmie
Confirmed User
 
Join Date: Dec 2003
Location: Ft Worth TX!
Posts: 872
Quote:
Originally Posted by tyler86ed
Well if thats an external css take out the html <style> tags. You can't use HTML in a .CSS file

That would work if it was an internal CSS.

thanks a ton, u fixed the problems... im a CSS newbie, and didnt realize it didnt need them if it was an off site CSS file.
Jimmie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:53 PM   #13
tyler86ed
Confirmed User
 
Join Date: Jan 2004
Location: California
Posts: 543
Quote:
Originally Posted by Jimmie
thanks a ton, u fixed the problems... im a CSS newbie, and didnt realize it didnt need them if it was an off site CSS file.
No Problem. Now its time for all CSS layout
__________________

Check out all our new fresh FETISH sites, Tons of hosted galleries and fresh new content.
tyler86ed is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-04-2005, 11:11 AM   #14
felipeav
Confirmed User
 
Join Date: Jan 2005
Posts: 423
I don't know why, but my firefox got very slow to open the pages recently ... and it doesn't seem to be a spyware/virus
__________________

Promote our sites at SpiderDollars.com
felipeav is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-04-2005, 12:18 PM   #15
Jimmie
Confirmed User
 
Join Date: Dec 2003
Location: Ft Worth TX!
Posts: 872
Quote:
Originally Posted by tyler86ed
No Problem. Now its time for all CSS layout
I have no idea how to do that......
Jimmie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-04-2005, 07:03 PM   #16
Jimmie
Confirmed User
 
Join Date: Dec 2003
Location: Ft Worth TX!
Posts: 872
maybe we can get together on ICQ or AIM and let you look at my site... and maybe show me the way, as far as where to learn that info
Jimmie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.