Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

Using Frames in Safari

 
   Web Hosting and Web Master Forums (Home) -> Webmaster RSS
Next:  Hagrid costume last night  
Author Message
news17

External


Since: Oct 22, 2003
Posts: 35



(Msg. 1) Posted: Sat Sep 04, 2004 5:14 pm
Post subject: Using Frames in Safari
Archived from groups: alt>www>webmaster (more info?)

Hi All

I know the first thing that some might say is that I shouldn't be using in
frames in web sites, but they are listed as being part of the HTML 4.0
standard.

I am trying to do my web sites without them, but I have a couple that really
need to have frames and which work fine in IE and Netscape, but this new
Safari browser seems to have a real problem with them. Problem is that
these couple of framed sites are predominately for Mac users and therefore
the first browser that a Mac user now uses to view the site is Safari.

The exact problem is that the web sites in question are split into 2
horizontal frames to start with and then the 2nd (lower) horizontal frame is
split into 2 vertical frames. This is a common format to give a header,
left hand nav bar and then right hand content page, but it looks like even
the latest Safari can't handle this 2nd vertical frameset. All the user
sees is the header frame and below is blank.

Is this a fault with Safari or is there a way in which the framesets should
be shown in order for it to work in Safari??

Your help would really be appreciated.

Rgds

Laphan

 >> Stay informed about: Using Frames in Safari 
Back to top
Login to vote
usenet200409

External


Since: Sep 02, 2004
Posts: 57



(Msg. 2) Posted: Sat Sep 04, 2004 6:33 pm
Post subject: Re: Using Frames in Safari [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Laphan wrote:

 > Your help would really be appreciated.

Your URL would really be appreciated.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ <a style='text-decoration: underline;' href="http://tobyinkster.co.uk/contact" target="_blank">http://tobyinkster.co.uk/contact</a>
Now Playing ~ ./u2/beautiful_day.ogg<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: Using Frames in Safari 
Back to top
Login to vote
news17

External


Since: Oct 22, 2003
Posts: 35



(Msg. 3) Posted: Sat Sep 04, 2004 7:01 pm
Post subject: Re: Using Frames in Safari [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Sorry Toby

URL is <a style='text-decoration: underline;' href="http://www.astraaccounts.co.uk" target="_blank">http://www.astraaccounts.co.uk</a>

Rgds Laphan

Toby Inkster <usenet200409 DeleteThis @tobyinkster.co.uk> wrote in message
news:pan.2004.09.04.14.33.29.660044@tobyinkster.co.uk...
Laphan wrote:

 > Your help would really be appreciated.

Your URL would really be appreciated.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ <a style='text-decoration: underline;' href="http://tobyinkster.co.uk/contact" target="_blank">http://tobyinkster.co.uk/contact</a>
Now Playing ~ ./u2/beautiful_day.ogg<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Using Frames in Safari 
Back to top
Login to vote
usenet200409

External


Since: Sep 02, 2004
Posts: 57



(Msg. 4) Posted: Sat Sep 04, 2004 7:15 pm
Post subject: Re: Using Frames in Safari [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Laphan wrote:

 > Is this a fault with Safari or is there a way in which the framesets should
 > be shown in order for it to work in Safari??

At a guess (and as I don't have Safari this is only a guess!) it's because
of your totally screwy "rows" and "cols" attributes.

Try changing this:
<FRAMESET FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 ROWS="64,*%">
<FRAME SRC="header.html" NAME="header" MARGINWIDTH=0 MARGINHEIGHT=0 NORESIZE SCROLLING="NO">
<FRAMESET FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 COLS="185,76%">
<FRAME SRC="chooser.html" NAME="chooser" MARGINWIDTH=0 MARGINHEIGHT=0 NORESIZE>
<FRAME SRC="home.asp" NAME="viewer">
</FRAMESET>
</FRAMESET>

To this:
<FRAMESET ROWS="64,*">
<FRAME SRC="header.html" NAME="header" SCROLLING="NO">
<FRAMESET COLS="185,*">
<FRAME SRC="chooser.html" NAME="chooser">
<FRAME SRC="home.asp" NAME="viewer">
</FRAMESET>
</FRAMESET>

And then see if it works.

Also, stop using <NOFRAMES> to spam search engines and start using it for
its intended purpose -- to provice alternative content for user agents
that don't support frames.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ <a style='text-decoration: underline;' href="http://tobyinkster.co.uk/contact" target="_blank">http://tobyinkster.co.uk/contact</a>
Now Playing ~ ./counting_crows/august_and_everything_after/05_anna_begins.ogg<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Using Frames in Safari 
Back to top
Login to vote
karl1

External


Since: Apr 07, 2004
Posts: 80



(Msg. 5) Posted: Sat Sep 04, 2004 8:58 pm
Post subject: Re: Using Frames in Safari [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Laphan" <news.RemoveThis@DoNotEmailMe.co.uk> wrote in message
news:4139c280$1_3@127.0.0.1...
 > Hi All
 >
 > I know the first thing that some might say is that I shouldn't be using in
 > frames in web sites,

Looks like you answered your own question

-Karl<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Using Frames in Safari 
Back to top
Login to vote
news17

External


Since: Oct 22, 2003
Posts: 35



(Msg. 6) Posted: Tue Sep 07, 2004 10:47 pm
Post subject: Re: Using Frames in Safari [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Many thanks Toby

You have nailed the frameset issue.

Rgds

Laphan

Toby Inkster <usenet200409.DeleteThis@tobyinkster.co.uk> wrote in message
news:pan.2004.09.04.15.15.14.591899@tobyinkster.co.uk...
Laphan wrote:

 > Is this a fault with Safari or is there a way in which the framesets
should
 > be shown in order for it to work in Safari??

At a guess (and as I don't have Safari this is only a guess!) it's because
of your totally screwy "rows" and "cols" attributes.

Try changing this:
<FRAMESET FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 ROWS="64,*%">
<FRAME SRC="header.html" NAME="header" MARGINWIDTH=0 MARGINHEIGHT=0 NORESIZE
SCROLLING="NO">
<FRAMESET FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 COLS="185,76%">
<FRAME SRC="chooser.html" NAME="chooser" MARGINWIDTH=0 MARGINHEIGHT=0
NORESIZE>
<FRAME SRC="home.asp" NAME="viewer">
</FRAMESET>
</FRAMESET>

To this:
<FRAMESET ROWS="64,*">
<FRAME SRC="header.html" NAME="header" SCROLLING="NO">
<FRAMESET COLS="185,*">
<FRAME SRC="chooser.html" NAME="chooser">
<FRAME SRC="home.asp" NAME="viewer">
</FRAMESET>
</FRAMESET>

And then see if it works.

Also, stop using <NOFRAMES> to spam search engines and start using it for
its intended purpose -- to provice alternative content for user agents
that don't support frames.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ <a style='text-decoration: underline;' href="http://tobyinkster.co.uk/contact" target="_blank">http://tobyinkster.co.uk/contact</a>
Now Playing ~
../counting_crows/august_and_everything_after/05_anna_begins.ogg<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Using Frames in Safari 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Safari/Opera 6 poor rendering of simple table. - I hope someone can help me with this. This page renders well in IE, NS & Opera 7, however someone with a MAC reports trouble when viewing in Safari - notably two broad white bands horizontally across the screen. This can also be replicated in Opera ...

getting away from frames - I have a set of pages that are loaded from a navigation frame. In short, my page has a frame with 5 links on it, that load one of 5 pages in the other frame. I need to get away from this. Mostly because there is interactive content (applets, etc.)..

frames or not frames - Hi to all, This debate has been going on for years, now in 2004, I was wondering what you guys are thinking. I am interested in the opinions of webmasters who know what they are talking about. Do you use frames for your site and would you recommend..

new about frames - Hello I have read than robots don't like frames is it true?and is it all robots? I have read too it is better to not have in index page. What is your advices please?What must I do? I thank you in advance Patrick

Frames - I am using frames to update an old site which did previously did not use frames. The top portion of the original page included a banner/menu bar (javascript) which I would like to use as the TOP frame page in the redesign of the site. My dilemma is....
   Web Hosting and Web Master Forums (Home) -> Webmaster All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]