Cognecy's Suggestions for first-times on Initially Setting up your PC Store
1) Listen to Greg Dinger's advice ... it really is just a sandwich!
2) If you are not very experienced with coding, never work on your header and footer files as individual pieces (If this is the first time you have ever looked at html/asp code then STOP and hire a developer). See below for further explanation
3) In your page (before you add the Product cart code). you need to have an area defined in the middle (the sandwich) where you want the store to be. Ideally you would want to start out with a space that is 900px wide like the default store is (we can worry about customizing it later to widths you want). This point in the middle of the code can be in between a <td></td> or <div></div> pairing.
Define your break-point in the file like this with comments so you always know what part of the code belongs where:
<td> (or <div>)
<!-- HEADER ABOVE -->
<!-- FOOTER BELOW -->
</td> (or </div>)
3a) It is a good idea to combine the original Header and Footer files that come with ProductCart as well. You can keep it as a reference file and it will give you a very good idea of how the header and footer are constructed and work together. You could name this 'combined' file something like HeaderFooterORIG.asp. Be sure to add the commented break-point as mentioned above before you combine them.
When in doubt, you can always refer back to this HeaderFooterORIG.asp file as your guideline.
4) Now you should now have your working page set up and ready to add the ProductCart Code and saved as a file called HeaderFooter.asp with the appropriate commented break-points. From this day forward when ever you make a change to your store, always make the change in this file. When you have it looking the way you want, copy from the <!-- HEADER ABOVE --> on up, and paste into the header.asp file; copy from the <-- FOOTER BELOW --> point on down, and paste that into the footer.asp file.
This may sound like a novice move, but understand that I am a very experienced coder and I still do this when I work on stores ... Why, because it makes it so much simpler when you can see the page put together! This also prevent your editing software from adding extra styles and <head></head> statements to your footer file (I correct this in stores all the time).
5) When it comes to the store, stay away from in-line style changes because if you do the wrong thing it can conflict with what the ProductCart CSS files are trying to do and make your site look strange. My rule of thumb is that when it comes to styling the store, always use the default CSS files to make changes (pcheaderfooter08.css and pcstorefront.css). If you need some extra styles, there is nothing wrong with adding the styles to the bottom of these respective default CSS files.
If you are not comfortable with CSS, Stop and bring someone in that is. It will be worth the money spent.
ALTERNATIVE APPROACH:
You can just build your store around the default Header and Footer files Early Impact Provides and make alterations to the title and add your logo. Just remember to make your changes in the combined file then copy from the <!-- HEADER ABOVE --> up, and paste into the header.asp file, and copy from the <-- FOOTER BELOW --> point down, and paste into the footer.asp file.
After you have the store running you can always work with a developer to customize the look to something more specific.
Either way, there are a lot of us here on the forums that would likely take this on as a project to get you initially set up and running. No need for frustration.
------------- Mark Shipp Cognecy Solutions, LLC Hosting/Design/Customization/Database Migration www.cognecy.com www.cognecy.co.uk
|