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.

Website Design Forum


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



Freelance Jobs

Reply
Need help on website creation, where to start
Old 07-10-2008, 04:21 AM Need help on website creation, where to start
Junior Talker

Posts: 3
Trades: 0
Ok I need abit of advice and not really sure where to start.

I have an excel spreadsheet with several workbooks which display my list of dvds under different headings.

I save each worksheet separately as html page and then use dreamweaver with frames to use the top frame as spry menu bar and the bottom frame displays one of the workbook pages.

Ive been told and found several problems with using frames but I just dont know if theres any easier or better way of doing what Im trying to do.

The idea is so I can EASILY save the workbook as html and upload and viola my site is updated and obviously I need a menu to navigate hence the two frames.

if anyone has any suggestions of how I can do this id appreciate it.

thanks
technium is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-10-2008, 07:31 AM Re: Need help on website creation, where to start
aboyd's Avatar
Skilled Talker

Posts: 61
Location: USA
Trades: 0
If you're good enough with DreamWeaver to create frames and navigation, then you're good enough to embed that navigation into each HTML page. Viola, you don't need frames anymore.

Of course, if you dislike the idea of having to use DreamWeaver to paste in the navigation each time you export out of Excel, then probably you need to keep doing what you're doing. It can't be both easy and awesome at the same time. Good things require a bit of effort.

That said, if you really care about how automated and easy this will be, you can do things like run a script after you upload all the HTML, and that script would insert the menu/header into each page for you. That way you'd save time and it'd remain easy. However, you'd have to write the script, which is non-trivial and might require you to learn Perl if you don't know it already. Suddenly it's not easy again. You could hire someone.

Perhaps somebody here would post the Perl to swap in a header on a directory full of HTML files, and also provide a walkthrough about how to install it and run it quickly each time the HTML is re-generated?
__________________

Please login or register to view this content. Registration is FREE
- geek blog & free phpBB mods

Please login or register to view this content. Registration is FREE
- tools & forums for writers

Please login or register to view this content. Registration is FREE
- dating advice for men, from women
aboyd is offline
Reply With Quote
View Public Profile Visit aboyd's homepage!
 
Old 07-10-2008, 11:45 AM Re: Need help on website creation, where to start
MacJedi's Avatar
Novice Talker

Posts: 6
Name: MacJedi
Trades: 0
Well since you already know how to do frames... here is a little idea. Not very over the edge awesome but still doable for trying to keep it easy as far as what you already know how to to.

First create with dreamweaver a frame set with a top nav and a left side nav. Make the top nav your masthead with whatever graphics you want and then create a set of nav buttons such as 1 to 4 at the top that might say for example button 1 might say DVD Lists 1 thru 10 and button 2 might say DVD Lists 11 thru 20 and so on. Now with all three frames up on Dreamweaver that is to say top frame, left frame, and center frame, create a set of buttons 1 thru 10 on the left nav frame and save frame as nav1-10.htm Now on each of those buttons create a link which will target the center frame. So you would have left nav button 1 target mainFrame dvdlist1.htm and button 2 target mainFrame dvdlist2.htm and so on. At this point you can creat multiple left nave frames as you need them. Lets say you eventually wanted 100 dvd lists on the site but only had 19 so far, you could build everything in place with the top nav having 10 buttons. Each top nav button would link to the left nav for example button 1 would target leftFrame leftnav1.htm and button 2 would target leftFrame leftnav2.htm and so on. Now on the left frame nave sets you would create your left nave with the 10 buttons and each button targeting a mainFram 1 thru 10. Just duplicate the left nav html doc and edit to reflect new links on the buttons so that for example leftnav2.htm would have buttons linking from 11 to 20 button one targeting mainFrame dvdlist11.htm. So create these nav buttons as needed or create all 100 and for the buttons that do not have your excel dvd list page yet, create a placeholder page with maybe a graphic of a DVD and a statement something like "Thats it folks! so far we are still working to bring you more DVD lists but from this point on you will just have to keep checking back to see what is new, until then enjoy all that we have in the previous lists. Now since you have created everything before hand as far as links, all you have to do is upload a new HTML page with the new excel list and replace a placeholder page.

This is a way to do it all with the knowledge you have and still have the site easy to edit and nice looking.

Hope this round about idea finds happiness in your plans

MacJedi
MacJedi is offline
Reply With Quote
View Public Profile Visit MacJedi's homepage!
 
Old 07-10-2008, 02:39 PM Re: Need help on website creation, where to start
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Do NOT use frames ! You're on the right track when you mentioned a better way. Frames are just a mess and an search engine nightmare.

Forget the frames. That header-swap perl scripting isn't necessary either.
Your best option - use divs and CSS. For your nav area, use a server-side include and then you can use PHP to implement the include. Using includes you only have to edit your navigation in a SINGLE file - the included file - and you then have updated navigation on every single page.

Folks in the PHP forum can tell you how to do the includes. Sounds to me like you've fallen into a classic trap - using a spreadsheet as a database. If you go to PHP, you can use a REAL database, and it'll be a lot easier in the long run to maintain your lists.

Frames.. they're about as bad as tables for layout !
__________________
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


Last edited by LadynRed; 07-10-2008 at 02:40 PM..
LadynRed is offline
Reply With Quote
View Public Profile
 
Old 07-10-2008, 06:57 PM Re: Need help on website creation, where to start
aboyd's Avatar
Skilled Talker

Posts: 61
Location: USA
Trades: 0
Quote:
Originally Posted by LadynRed View Post
Forget the frames. That header-swap perl scripting isn't necessary either.
Sure, the Perl script isn't necessary, but it IS superior to the alternative you suggested. Don't forget the guy is exporting fresh files each time, so they will lose any code (like a PHP include function call), every time.

With a Perl script his steps would be export, upload, run script, done. The script adds the navigation to each file automatically each time.

With PHP, his steps would be export, open each file in Dreamweaver to re-add the include, then upload, done. If he needs to edit each file each export, why not just add the header itself and stick with simple HTML entirely?
__________________

Please login or register to view this content. Registration is FREE
- geek blog & free phpBB mods

Please login or register to view this content. Registration is FREE
- tools & forums for writers

Please login or register to view this content. Registration is FREE
- dating advice for men, from women
aboyd is offline
Reply With Quote
View Public Profile Visit aboyd's homepage!
 
Old 07-11-2008, 05:26 AM Re: Need help on website creation, where to start
Junior Talker

Posts: 3
Trades: 0
ok ive started to play about with the html workbook page and have found a few online html menus and liked the one found here -
http://www.dynamicdrive.com/dynamici...menu/index.htm

But is there a way to get this menu to be fixed or float so that when users scroll down the 700+ lines of data in the work book the menu still stays visible, obviously this wasnt a problem with frames but Im seeing if I can do the same thing with html page instead.

Then I figure all I have to do is save the html page and then copy the code for the menu and floating part at the top of each html page and im sorted if only it was that simple eh??
technium is offline
Reply With Quote
View Public Profile
 
Old 07-11-2008, 02:55 PM Re: Need help on website creation, where to start
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
If he put his collection into a REAL database to start with, then there would be no exporting necessary from a spreadsheet - and pulling the info out on a site using PHP would be pretty easy to do.
Quote:
But is there a way to get this menu to be fixed or float so that when users scroll down the 700+ lines of data in the work book the menu still stays visible
You can do that with javascript. There are lots of scripts out there for this type of thing, try www.dynamicdrive.com
__________________
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 07-14-2008, 12:01 AM Re: Need help on website creation, where to start
Average Talker

Posts: 16
Trades: 0
Quote:
Originally Posted by technium View Post
But is there a way to get this menu to be fixed or float so that when users scroll down the 700+ lines of data in the work book the menu still stays visible, obviously this wasnt a problem with frames but Im seeing if I can do the same thing with html page instead.
You can do that easily by enclosing the menu in a div tag, and adding a style to it like this:
Code:
<div style=”position:fixed”>Menu Content</div>

And I don’t encourage frames either.
__________________

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


netraits is offline
Reply With Quote
View Public Profile Visit netraits's homepage!
 
Reply     « Reply to Need help on website creation, where to start
 

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.27982 seconds with 12 queries