- Feb 11, 2005
- 7,942
- 2
- 0
now I'm trying to figure out if Comcast/GoDaddy and other hosting companies actually support this thing or not
That's exactly right. The nice thing about this, when you update your menu or alter the content of your title area, you only need to change the corresponding shtml files.Originally posted by: Accipiter22
So basically draw out a table with boxes where the menu bar and site title graphic would go, and put those lines in the html for those sections of the table?
Originally posted by: jjones
That's exactly right. The nice thing about this, when you update your menu or alter the content of your title area, you only need to change the corresponding shtml files.Originally posted by: Accipiter22
So basically draw out a table with boxes where the menu bar and site title graphic would go, and put those lines in the html for those sections of the table?
Also, like troytime mentioned, you probably end up using less time than it takes to fuss with frames.![]()
If you're talking about not reloading the menu and title, then it's either frames, flash or AJAX.Originally posted by: Accipiter22
Originally posted by: jjones
That's exactly right. The nice thing about this, when you update your menu or alter the content of your title area, you only need to change the corresponding shtml files.Originally posted by: Accipiter22
So basically draw out a table with boxes where the menu bar and site title graphic would go, and put those lines in the html for those sections of the table?
Also, like troytime mentioned, you probably end up using less time than it takes to fuss with frames.![]()
wait wait wait...that still doesn't do what I originally wanted though....I want the menu bar to stay on the side, and the graphic at the top, but the main pane of the website changes depending on what you select from the menu bar....no one's said how to do this with SSI at all...is it possible?
Originally posted by: Accipiter22
Originally posted by: jjones
That's exactly right. The nice thing about this, when you update your menu or alter the content of your title area, you only need to change the corresponding shtml files.Originally posted by: Accipiter22
So basically draw out a table with boxes where the menu bar and site title graphic would go, and put those lines in the html for those sections of the table?
Also, like troytime mentioned, you probably end up using less time than it takes to fuss with frames.![]()
wait wait wait...that still doesn't do what I originally wanted though....I want the menu bar to stay on the side, and the graphic at the top, but the main pane of the website changes depending on what you select from the menu bar....no one's said how to do this with SSI at all...is it possible?
Originally posted by: jjones
If you're talking about not reloading the menu and title, then it's either frames, flash or AJAX.Originally posted by: Accipiter22
Originally posted by: jjones
That's exactly right. The nice thing about this, when you update your menu or alter the content of your title area, you only need to change the corresponding shtml files.Originally posted by: Accipiter22
So basically draw out a table with boxes where the menu bar and site title graphic would go, and put those lines in the html for those sections of the table?
Also, like troytime mentioned, you probably end up using less time than it takes to fuss with frames.![]()
wait wait wait...that still doesn't do what I originally wanted though....I want the menu bar to stay on the side, and the graphic at the top, but the main pane of the website changes depending on what you select from the menu bar....no one's said how to do this with SSI at all...is it possible?
Originally posted by: troytime
SSI won't work in preview mode if its just previewing off your local drive.
Dreamweaver is smart enough to display the file though. On the server, it will pull that file and include it in that spot.
EDIT
SSI is very usefull. It looks like a crock of sh*t to you because you don't fully understand whats going on.
When the server loads your main page, it will look through it for SSI code.
If it finds it (like the include lines you used), it will grab the contents of that include and place it where the include line is.
Originally posted by: troytime
post a link, something isn't right
Originally posted by: Unheard
Your making this too hard. Check out the attached code:
Originally posted by: troytime
it should take LESS time than doing frames.
its a single line of code, and you don't have to worry about all the target attributes
Originally posted by: blackllotus
Originally posted by: troytime
it should take LESS time than doing frames.
its a single line of code, and you don't have to worry about all the target attributes
He's using Dreamweaver so its just point and click for the most part.
Originally posted by: Unheard
Originally posted by: dartworth
.
I wholeheartedly agree dartworth.
Originally posted by: Unheard
Ok this is ugly, but take a look @ the source:
http://www.unheard.org/Accipiter22.html
You will see the PHP includes under the banner div and the left content div. You would create the pages banner.php and menu.php and that code would cause those pages to be included in those areas. Of course you would need to clean up the color scheme in the CSS to make it look pretty. Hopefully this puts you on the right course.
Originally posted by: Accipiter22
Originally posted by: Unheard
Ok this is ugly, but take a look @ the source:
http://www.unheard.org/Accipiter22.html
You will see the PHP includes under the banner div and the left content div. You would create the pages banner.php and menu.php and that code would cause those pages to be included in those areas. Of course you would need to clean up the color scheme in the CSS to make it look pretty. Hopefully this puts you on the right course.
OK< I think I'm getting this.....now would i put that on each page then, if I wanted to keep the banner and menu on the side?
Originally posted by: Unheard
Originally posted by: Accipiter22
Originally posted by: Unheard
Ok this is ugly, but take a look @ the source:
http://www.unheard.org/Accipiter22.html
You will see the PHP includes under the banner div and the left content div. You would create the pages banner.php and menu.php and that code would cause those pages to be included in those areas. Of course you would need to clean up the color scheme in the CSS to make it look pretty. Hopefully this puts you on the right course.
OK< I think I'm getting this.....now would i put that on each page then, if I wanted to keep the banner and menu on the side?
Yep, just use that same page for every page, and just change the content of the page.