Is there anyway I can block certain broswers?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • scottybuzz
    Too lazy to set a custom title
    • May 2006
    • 14799

    #1

    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.
    $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$
  • Deputy Chief Command
    Deputy Chief Command
    • Nov 2005
    • 4482

    #2
    so you want a browser redirect

    Comment

    • Kimo
      ...
      • Jan 2006
      • 11542

      #3
      a lot of people are using firefox now...
      ...

      Comment

      • EdgeXXX
        Confirmed User
        • Oct 2005
        • 5816

        #4
        scotty, what's the problem your site is having with FF?
        .
        .
        .
        .

        I have a sig

        Comment

        • scottybuzz
          Too lazy to set a custom title
          • May 2006
          • 14799

          #5
          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
          $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

          Comment

          • iwantchixx
            Too lazy to set a custom title
            • Oct 2002
            • 12860

            #6
            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;

            Comment

            • scottybuzz
              Too lazy to set a custom title
              • May 2006
              • 14799

              #7
              i am a retard. could you explain please mate?
              $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

              Comment

              • iwantchixx
                Too lazy to set a custom title
                • Oct 2002
                • 12860

                #8
                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.

                Comment

                • iwantchixx
                  Too lazy to set a custom title
                  • Oct 2002
                  • 12860

                  #9
                  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.

                  Comment

                  • EdgeXXX
                    Confirmed User
                    • Oct 2005
                    • 5816

                    #10
                    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

                    Comment

                    • scottybuzz
                      Too lazy to set a custom title
                      • May 2006
                      • 14799

                      #11
                      ahh thanks guys. i take it this is the problem with using frontpage???????
                      $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

                      Comment

                      • EdgeXXX
                        Confirmed User
                        • Oct 2005
                        • 5816

                        #12
                        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

                        Comment

                        • scottybuzz
                          Too lazy to set a custom title
                          • May 2006
                          • 14799

                          #13
                          by the way thanks for that tip work like a treat
                          $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

                          Comment

                          • iwantchixx
                            Too lazy to set a custom title
                            • Oct 2002
                            • 12860

                            #14
                            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.

                            Comment

                            • scottybuzz
                              Too lazy to set a custom title
                              • May 2006
                              • 14799

                              #15
                              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
                              $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

                              Comment

                              • scottybuzz
                                Too lazy to set a custom title
                                • May 2006
                                • 14799

                                #16
                                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.
                                $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

                                Comment

                                • grumpy
                                  Too lazy to set a custom title
                                  • Jan 2002
                                  • 9870

                                  #17
                                  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

                                  Comment

                                  • scottybuzz
                                    Too lazy to set a custom title
                                    • May 2006
                                    • 14799

                                    #18
                                    I know plenty of webmasters who use frontpage
                                    $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

                                    Comment

                                    • EdgeXXX
                                      Confirmed User
                                      • Oct 2005
                                      • 5816

                                      #19
                                      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

                                      Comment

                                      • EdgeXXX
                                        Confirmed User
                                        • Oct 2005
                                        • 5816

                                        #20
                                        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

                                        Comment

                                        • donross
                                          Confirmed User
                                          • Aug 2005
                                          • 1295

                                          #21
                                          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

                                          Comment

                                          • DEA - banned for life
                                            V.I.P.
                                            • Nov 2004
                                            • 7886

                                            #22
                                            try deleting windows files

                                            Comment

                                            • Stumps
                                              Confirmed User
                                              • Jul 2006
                                              • 363

                                              #23
                                              dea- i love your wit.

                                              makingcoin.com - 100% payouts for August
                                              coinscuties.com

                                              Comment

                                              • Bro Media - BANNED FOR LIFE
                                                MOBILE PORN: IMOBILEPORN
                                                • Jan 2004
                                                • 16502

                                                #24
                                                blocking a standards compliant browser because you can't code properly is kinda stupid

                                                Comment

                                                • scottybuzz
                                                  Too lazy to set a custom title
                                                  • May 2006
                                                  • 14799

                                                  #25
                                                  yeh tell me about it but i said this was short term
                                                  $$$$$ MAKE HUGE MONEY IN CAMS - CLICK HERE $$$$$

                                                  Comment

                                                  Working...