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 Mark Forums Read
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 07-25-2006, 03:58 AM   #1
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
Is there anyway I can block certain broswers?

I know it sounds crazy, but my site doesnt just work with firefox

so as a short term solver I would like to know if there was a code to block it of and send it to a click site direct.
I know you can block of certain languages, but wondering if the same could be done for browsers.

any help will be truely greeted well and will be remembed for the future.
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:00 AM   #2
Deputy Chief Command
Deputy Chief Command
 
Industry Role:
Join Date: Nov 2005
Posts: 4,482
so you want a browser redirect
__________________
Deputy Chief Command is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:06 AM   #3
Kimo
...
 
Join Date: Jan 2006
Location: Maryland ICQ:87038677
Posts: 11,542
a lot of people are using firefox now...
__________________
...
Kimo is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:14 AM   #4
EdgeXXX
Confirmed User
 
EdgeXXX's Avatar
 
Join Date: Nov 2005
Location: Secretely plotting a hostile takeover
Posts: 5,816
scotty, what's the problem your site is having with FF?
__________________
.
.
.
.

I have a sig
EdgeXXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:16 AM   #5
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
hey thanks for getting back to me yeh i want a browser redirect. edge take a look www.foxyreviews.co.uk take a peek at that with different resolutions with firefox, they are some huge fucking text alignment problems.

and kimo I am well aware that more people are using firefox, at last count 24% of my surfers had it
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:22 AM   #6
iwantchixx
Too lazy to set a custom title
 
iwantchixx's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
Quote:
Originally Posted by scottybuzz
hey thanks for getting back to me yeh i want a browser redirect. edge take a look www.foxyreviews.co.uk take a peek at that with different resolutions with firefox, they are some huge fucking text alignment problems.

and kimo I am well aware that more people are using firefox, at last count 24% of my surfers had it

remove position: absolute; and z-index: 1; left: 144px;
iwantchixx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:23 AM   #7
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
i am a retard. could you explain please mate?
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:33 AM   #8
iwantchixx
Too lazy to set a custom title
 
iwantchixx's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
Quote:
Originally Posted by scottybuzz
i am a retard. could you explain please mate?
look in your code, you are forcing positions and layering across cells.

for example, look at models.html

Code:
<td colspan="32" background="images/template_46.jpg" width="610" height=914>
		<div style="border-style:solid; border-width:1px; position: absolute; width: 444px; height: 118px; z-index: 1; left: 144px; top: 262px; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px" id="layer1">
			&nbsp;<p>
			<b>

			<font face="Trebuchet MS" color="#FFFFFF">
			<img border="0" src="models%20small/trial.gif" width="28" height="11"> 
			- Special offer membership for a </font></b></p>
Try removing

Code:
position: absolute; and z-index: 1; left: 144px; top: 262px;
and

add center tag to your cell statement:

Code:
<td align="center" colspan="32" background="images/template_46.jpg" width="610" height=914>

If you need more space above it add margin: 40 or some shit like that to the style=" statement


You're ont he right track with using div tags but you might also want to consider that firefox doesnt always read some styles properly. If you need something centered use align="center" in the cell the content appears in. much easier and cross browser readable.

z-index and position tags work, but they're tricky as fuck to use for non-ms browser uses.
iwantchixx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:36 AM   #9
iwantchixx
Too lazy to set a custom title
 
iwantchixx's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
shit, im looking the code over, you gotta stop letting programs generate code.

This is a mess and 70% of thatc ode could be eradicated and still have the same look of the site.
iwantchixx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 04:40 AM   #10
EdgeXXX
Confirmed User
 
EdgeXXX's Avatar
 
Join Date: Nov 2005
Location: Secretely plotting a hostile takeover
Posts: 5,816
Quote:
Originally Posted by iwantchixx
shit, im looking the code over, you gotta stop letting programs generate code.

This is a mess and 70% of thatc ode could be eradicated and still have the same look of the site.
That's what I was just about to say. ImageReady tends to make a severe mess of the code. Also scotty, you may want to think about switching to a more Dynamic site layout (even CSS) instead of a Fixed position layout. Less browser problems that way.
__________________
.
.
.
.

I have a sig
EdgeXXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:19 AM   #11
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
ahh thanks guys. i take it this is the problem with using frontpage???????
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:22 AM   #12
EdgeXXX
Confirmed User
 
EdgeXXX's Avatar
 
Join Date: Nov 2005
Location: Secretely plotting a hostile takeover
Posts: 5,816
Quote:
Originally Posted by scottybuzz
ahh thanks guys. i take it this is the problem with using frontpage???????
Most likely. I use Dreamweaver, so I can't say for sure if Frontpage is to blame (but I would think so).
__________________
.
.
.
.

I have a sig
EdgeXXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:23 AM   #13
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
by the way thanks for that tip work like a treat
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:26 AM   #14
iwantchixx
Too lazy to set a custom title
 
iwantchixx's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
Quote:
Originally Posted by EdgeXXX
Most likely. I use Dreamweaver, so I can't say for sure if Frontpage is to blame (but I would think so).

Frontpage actually does a better job at being compliant with code. With anything though, it's got to be edited by hand in HTML view and cleaned by hand.
iwantchixx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:27 AM   #15
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
Quote:
Originally Posted by EdgeXXX
Most likely. I use Dreamweaver, so I can't say for sure if Frontpage is to blame (but I would think so).
I will have a go at dreamweaver, I tried it as a teenager and hated it. lets see if ive grown up enough yet
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:28 AM   #16
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
Quote:
Originally Posted by iwantchixx
Frontpage actually does a better job at being compliant with code. With anything though, it's got to be edited by hand in HTML view and cleaned by hand.
ok doky thanks alot for you help, wont forget it.
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:42 AM   #17
grumpy
Too lazy to set a custom title
 
grumpy's Avatar
 
Join Date: Jan 2002
Location: Holland
Posts: 9,870
Quote:
Originally Posted by scottybuzz
ahh thanks guys. i take it this is the problem with using frontpage???????
its all about skills.Wanna be webmasters, at least learn some HTML
__________________
Don't let greediness blur your vision | You gotta let some shit slide
icq - 441-456-888
grumpy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 05:57 AM   #18
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
I know plenty of webmasters who use frontpage
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 06:09 AM   #19
EdgeXXX
Confirmed User
 
EdgeXXX's Avatar
 
Join Date: Nov 2005
Location: Secretely plotting a hostile takeover
Posts: 5,816
Quote:
Originally Posted by iwantchixx
With anything though, it's got to be edited by hand in HTML view and cleaned by hand.
Oh, I agree with that completely. Just about everything I do goes through UltraEdit32 for manual cleaning and modification before it gets uploaded.
__________________
.
.
.
.

I have a sig
EdgeXXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 06:11 AM   #20
EdgeXXX
Confirmed User
 
EdgeXXX's Avatar
 
Join Date: Nov 2005
Location: Secretely plotting a hostile takeover
Posts: 5,816
Quote:
Originally Posted by scottybuzz
I will have a go at dreamweaver, I tried it as a teenager and hated it. lets see if ive grown up enough yet
It's still a pain in the ass (IMHO), but it's fairly robust and I've used it from day one so I'm pretty much used to it.
__________________
.
.
.
.

I have a sig
EdgeXXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 06:16 AM   #21
donross
Confirmed User
 
Join Date: Aug 2005
Posts: 1,295
problems can be solve.. if you know CSS and HTML well... i always preview my designs in firefox and IE as well .. i admit, i find it diffult to fix it in both browsers and its time consuming... its worth trying... and when you get it done.. satisfying..
__________________
Email: [email protected] | Skype: ross.alcazar
donross is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 06:23 AM   #22
DEA - banned for life
V.I.P.
 
Join Date: Nov 2004
Location: InYour Head
Posts: 7,886
try deleting windows files
DEA - banned for life is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 10:22 PM   #23
Stumps
Confirmed User
 
Join Date: Jul 2006
Location: below the bails
Posts: 363
dea- i love your wit.
__________________

makingcoin.com - 100% payouts for August
coinscuties.com
Stumps is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-25-2006, 10:26 PM   #24
Bro Media - BANNED FOR LIFE
MOBILE PORN: IMOBILEPORN
 
Join Date: Jan 2004
Location: Tinseltown NL
Posts: 16,502
blocking a standards compliant browser because you can't code properly is kinda stupid
Bro Media - BANNED FOR LIFE is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-26-2006, 05:29 AM   #25
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
yeh tell me about it but i said this was short term
scottybuzz 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
Thread Tools



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.