Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Invisible None Scroll frames
Old 05-27-2008, 11:06 PM Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
Heres what i managed..

http://www.rotate-ireland.com/mess/all.html

Here is my code

Quote:
<HTML>
<HEAD><TITLE>Blah Blah</TITLE>
</HEAD>
<FRAMESET ROWS="16%, *">
<FRAME SRC="2index.html" NAME="top" framespacing="0" frameborder="0" scrolling="no">

<frameset cols="80%,20%" border="0" framespacing="0" frameborder="0">
<frame src="leftbot.html" NAME="left_bot" scrolling="no" />
<frame src="rightbot.html" NAME="right_bot" scrolling="no" />
</frameset>

</FRAMESET>
<!-- Displayed in browsers whih do not support frames -->
<NOFRAMES>
There is no frame support on your browser.
</NOFRAMES>
</HTML>
I want all frames none moving and unclcikable, also invisble. as you can see thetop frame is showing? however the 1 between bottom frames is not??

Where am I wrong?
hunty is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 05-28-2008, 06:45 AM Re: Invisible None Scroll frames
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,382
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Just get rid of the frames!
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 05-28-2008, 12:42 PM Re: Invisible None Scroll frames
wayfarer07's Avatar
Poo on You

Latest Blog Post:
Introducing WowWindow
Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
Trades: 0
You must be reading an old manual on web development and HTML. Frames are an old-style, hacky method of trying to get better results out of webpages and get around the browser deficiencies of 8-10 years ago, as well as dealing with the limited proliferation of server side languages made especially for web-development, which allow us to easily include one file into another from the server.

Frames should NEVER be the foundation for a webpage, with the web technologies that are available to us today.
__________________
I build web things. I work for the startup
Please login or register to view this content. Registration is FREE
.
wayfarer07 is offline
Reply With Quote
View Public Profile Visit wayfarer07's homepage!
 
Old 05-28-2008, 01:56 PM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
So any ideas what I should do to get what I want?

Thought frames were ok?
hunty is offline
Reply With Quote
View Public Profile
 
Old 05-28-2008, 02:14 PM Re: Invisible None Scroll frames
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Quote:
Thought frames were ok?
Nope, not any more. http://www.webaccessstrategies.com/b...rames-are-bad/

What Wayfarer was pointing out is the use of server-side includes, which can be done with PHP and .NET.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 05-28-2008, 02:23 PM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
K well thats frames scrapped.

I was planning have menu at top , and pics on right frame, which remianed in view when scrolled


So best way is try without frames? php or .net?

Is their code I could work of for that, like script? or have I to know language and wrtie it myself...
Sorry for such beginner questions!

Last edited by hunty; 05-28-2008 at 02:24 PM..
hunty is offline
Reply With Quote
View Public Profile
 
Old 05-30-2008, 06:38 PM Re: Invisible None Scroll frames
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,382
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
So best way is try without frames? php or .net?
Any server side code depends on what your hosting server supports.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 06-05-2008, 04:16 PM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
K i haven't cvlue of server side code, is their template for it or anything ?
hunty is offline
Reply With Quote
View Public Profile
 
Old 06-05-2008, 05:43 PM Re: Invisible None Scroll frames
wayfarer07's Avatar
Poo on You

Latest Blog Post:
Introducing WowWindow
Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
Trades: 0
Find out what kind of servers your host uses, and if it is Apache, you will go with PHP. If it is Microsoft servers, sometimes PHP is available, but usually we're talking something different.

In PHP, a server side include is very simple, and works like this:
PHP Code:
....your regular HTML....
<?php include "your/file/location.php"?>
....more HTML....
For our purposes, all that needs to be at "your/file/location.php" is a file with a snippet of HTML (no header or DOCTYPE, like you would for a frame). You just put whatever you need in that location into the snippet file that you are including. By the time it reaches the browser, it is all one file, as everything is "included" together on the server.

SSI is a very simple concept, and easy to get a hang of.

***ONE MORE NOTE***
Normally, in order to use PHP on a page, the file you are using must have a .php extension, instead of a .html or .htm extension. There are ways around this but normally it is not needed, so name your files 'whatever.php'
__________________
I build web things. I work for the startup
Please login or register to view this content. Registration is FREE
.

Last edited by wayfarer07; 06-05-2008 at 05:47 PM..
wayfarer07 is offline
Reply With Quote
View Public Profile Visit wayfarer07's homepage!
 
Old 06-05-2008, 05:54 PM Re: Invisible None Scroll frames
Arenlor's Avatar
Ultra Talker

Posts: 462
Name: Jerod Lycett
Location: /home/arenlor
Trades: 0
To test if you have PHP you can save this line into a file and call it test.php
PHP Code:
<?php phpinfo();?>
__________________
PHP Code:
<?php echo "Hello World"?>
HTML Code:
<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>
Arenlor is offline
Reply With Quote
View Public Profile Visit Arenlor's homepage!
 
Old 06-06-2008, 08:58 AM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
Its APACHE as far as I know

I have code on top done, how do i get a seperate part to the right also through php
hunty is offline
Reply With Quote
View Public Profile
 
Old 06-06-2008, 03:14 PM Re: Invisible None Scroll frames
wayfarer07's Avatar
Poo on You

Latest Blog Post:
Introducing WowWindow
Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
Trades: 0
May we see exactly what you have so far?
__________________
I build web things. I work for the startup
Please login or register to view this content. Registration is FREE
.
wayfarer07 is offline
Reply With Quote
View Public Profile Visit wayfarer07's homepage!
 
Old 06-06-2008, 08:38 PM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
this is all i have but with frames

http://www.rotate-ireland.com/mess/all.html (main)


seperate pages are

top menu : http://www.rotate-ireland.com/mess/2index.html
right part : http://www.rotate-ireland.com/mess/rightbot.html
main part : http://www.rotate-ireland.com/mess/leftbot.html just all black at minute

done that php test page too, got large list and what version php it is

Last edited by hunty; 06-06-2008 at 08:50 PM..
hunty is offline
Reply With Quote
View Public Profile
 
Old 06-08-2008, 09:49 PM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
any idea where i go from here?
hunty is offline
Reply With Quote
View Public Profile
 
Old 06-09-2008, 05:01 AM Re: Invisible None Scroll frames
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,382
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
http://www.webmaster-talk.com/html-f...tml#post731893
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 06-09-2008, 01:55 PM Re: Invisible None Scroll frames
angele803's Avatar
Perfectly Imperfect

Posts: 1,772
Name: Stephanie
Location: Oklahoma
Trades: 2
If you have php enabled on your server (which I would venture to guess that you do), then you need to add:

Code:
<?php include("2index.html"); ?>

<?php include("rightbot.html"); ?>

<?php include("leftbot.html"); ?>
where you would normally add the code on every page. You will also need to strip out all the excess code on those pages (2index, rightbot, and leftbot). They do not need the "<html>" or "<body>" etc. They ONLY need to contain the code you are including.
__________________

Please login or register to view this content. Registration is FREE
angele803 is offline
Reply With Quote
View Public Profile
 
Old 06-09-2008, 04:39 PM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
i see, and how do you position each page, say one to the top, one to bottom left, etc
hunty is offline
Reply With Quote
View Public Profile
 
Old 06-09-2008, 04:46 PM Re: Invisible None Scroll frames
vkw91's Avatar
Ultra Talker

Latest Blog Post:
Good Web Design Guide - part 1
Posts: 314
Name: Vicky
Location: Wales
Trades: 0
Quote:
Originally Posted by hunty View Post
i see, and how do you position each page, say one to the top, one to bottom left, etc
Your best bet is to use CSS, but it depends whether you want a static layout (panel in the centre) or Fluid (Fills the whole page, no matter of the size)
__________________
Blog (new):
Please login or register to view this content. Registration is FREE

Portfolio:
Please login or register to view this content. Registration is FREE

Techno Pup:
Please login or register to view this content. Registration is FREE

vkw91 is offline
Reply With Quote
View Public Profile Visit vkw91's homepage!
 
Old 06-09-2008, 04:56 PM Re: Invisible None Scroll frames
Experienced Talker

Posts: 32
Trades: 0
Fluid, But I think im going to have to scrap it, lost with this phpb and all thanks everyone though
hunty is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Invisible None Scroll frames
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.63587 seconds with 12 queries