To Admin: New Forum Format in Safari (Mac)

Started by cuthbert, January 11, 2010, 04:24:18 PM

cuthbert

Hiya BB - as a temporary workaround, you can try Firefox for Mac.
recorder
Boss Micro BR
recorder
Boss BR-80
recorder
Boss BR-800
                                        
recorder
Adobe Audition
recorder
Cubase

Bluesberry


Alternate Tunings: CAUTION: your fingers have to be in different places
 
recorder
Boss Micro BR
recorder
Boss BR-80
recorder
Boss BR-1200
recorder
iPad GarageBand
        

Mach

recorder
Pro Tools
recorder
Cubase
recorder
Adobe Audition
recorder
Boss Micro BR

Pedro

Are you using Chrome in Windows? What is the screen resolution?

64Guitars

Pedro:

I downloaded the PC version of Safari 4 from http://www.apple.com/safari/ and installed it under Wine 1.1.36 in Ubuntu 9.10 (Karmic Koala). I'm attaching a screenshot that shows the problem.

recorder
Zoom R20
recorder
Boss BR-864
recorder
Ardour
recorder
Audacity
recorder
Bitwig 8-Track
     My Boss BR website


"When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion." - Robert M. Pirsig

Bluesberry


Alternate Tunings: CAUTION: your fingers have to be in different places
 
recorder
Boss Micro BR
recorder
Boss BR-80
recorder
Boss BR-1200
recorder
iPad GarageBand
        

Migs

Fender 50s Reissue Tele (Mex) - blonde
Takamine EF-389 12 String Accoustic/Electric
Peavey Bandit 75; VOX AC30
Boss ME 50; Boss Micro BR; Kaossilator !

64Guitars

Pedro:

Find the line in "index.template.php" that generates the string <div id="header">.

Echo three line breaks ("<br /><br /><br />") immediately before it, so that the generated code looks like this:

<br /><br /><br />
<div id="header">
<div id="bodyarea" style="padding: 1ex 0px 2ex 0px;">


It's a bit of a kludge but it does the job and is almost unnoticeable in Firefox. Or maybe you can find a better way to achieve the same thing.

recorder
Zoom R20
recorder
Boss BR-864
recorder
Ardour
recorder
Audacity
recorder
Bitwig 8-Track
     My Boss BR website


"When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion." - Robert M. Pirsig

cuthbert

Quote from: Migs on January 17, 2010, 05:52:53 PM... which carries over to iPhone.

That's where I first noticed it, too.

I know, I'm addicted...  :)
recorder
Boss Micro BR
recorder
Boss BR-80
recorder
Boss BR-800
                                        
recorder
Adobe Audition
recorder
Cubase

64Guitars

Pedro:

Ignore my previous message. I found a better solution.

The cause of the problem seems to be that the floats in menu2 and menu3 of style.css are never cleared. You can fix it by adding a clear to the ID selector for header in style.css.

Change...

#header
{
   background-color: #fafafa;
   padding: 10px;
}

...to...

#header
{
   background-color: #fafafa;
   padding: 10px;

   /* fix for Safari browser */
   clear: both;
   padding-top: 0px;
}

This will put the content into the main container where it belongs, although it will be slightly lower. You can raise it back up to its normal position by changing index.template.php so that the generated line "<div id="bodyarea" style="padding: 1ex 0px 2ex 0px;">" is changed to "<div id="bodyarea" style="padding: 0ex 0px 2ex 0px;">".


By the way, there's another bug in the code which you should fix while you're at it. The "<div id="box">" just after the opening <body> tag never gets closed. So you should insert a closing </div> tag just before the closing </body> tag. This doesn't seem to have any visible effect in Firefox or Safari but it is an error.

recorder
Zoom R20
recorder
Boss BR-864
recorder
Ardour
recorder
Audacity
recorder
Bitwig 8-Track
     My Boss BR website


"When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion." - Robert M. Pirsig