Results 1 to 8 of 8
  1. #1
    Join Date
    Sep 2008
    Posts
    15
    Plugin Contributions
    0

    Default Newbie - Need Help with Custom Template Design!

    Hello,

    I have followed the instructions on creating a custom template and folders located here .
    https://www.zen-cart.com/tutorials/i...hp?article=142

    Now, my question is: How can I edit the design/custom template of my site on Dreamweaver. Which files do I edit on dreamweaver?
    - I am new to web design but I feel if I can get the graphic files into dreamweaver I will be able to edit them the way I need them.

    Please ask me to be more specific if needed. Thanks Fam.

    Ken

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Newbie - Need Help with Custom Template Design!

    How can I edit the design/custom template of my site on Dreamweaver.
    Dreamweaver is meant for html editing and ZenCart is php...
    There are not "pages" as defined for html that you can edit

    https://www.zen-cart.com/tutorials/i...hp?article=288

    Also see available free starting templates here

    http://(sorry, site offline)/
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Nov 2006
    Location
    Dartmouth, NS Canada
    Posts
    2,378
    Plugin Contributions
    0

    Default Re: Newbie - Need Help with Custom Template Design!

    Go ahead and use DW if you want, if you're comfortable and fast with it, to get the look you want. But know that the result, as kobra says, cannot be directly used in Zen Cart.

    In effect you've created in DW a picture of your site. You could do the same just by using Photoshop if you wished. But once you've done that in either program you'll still have to set that aside (got a big screen, I hope) and recreate that look in Zen Cart by adjusting - mostly - the stylesheet, and - as little as possible - the php code.

    It takes some head banging to find where to do everything, but the Tutorials/FAQs are your friend. And so are we.

    Rob

  4. #4
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Newbie - Need Help with Custom Template Design!

    majority of ZC styling are done through Style sheet ..
    problem for visual designers and DW , is the fact , that ZC needs to load many files dynamically . thats Header, Footer, centre box , and side boxes.

    if you have latest DW, you can launch index.php of zencart and use your live view and live code to change things in zc style sheet .

    you can use DTSS ( design time style sheet ) to apply style to your give pages.

    or even more dirtier . is to use your browser , navigate to zc page and save the html source of that page . and open it in your DW and modify and style your page . once happy , you can export that style

  5. #5
    Join Date
    Sep 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Newbie - Need Help with Custom Template Design!

    Quote Originally Posted by rstevenson View Post
    Go ahead and use DW if you want, if you're comfortable and fast with it, to get the look you want. But know that the result, as kobra says, cannot be directly used in Zen Cart.

    In effect you've created in DW a picture of your site. You could do the same just by using Photoshop if you wished. But once you've done that in either program you'll still have to set that aside (got a big screen, I hope) and recreate that look in Zen Cart by adjusting - mostly - the stylesheet, and - as little as possible - the php code.

    It takes some head banging to find where to do everything, but the Tutorials/FAQs are your friend. And so are we.

    Rob
    Well,

    The main things I want to do for starters is :
    1. Add an image to background off all pages. Same image.
    2. Change tables and remove lines ( i would like to make tables
    transparrent to let the background image take over.

    Sorry if this might seem repetitive to you all, but i am trying to learn CSS and PHP and I barely know html.

    Thanks

  6. #6
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,174
    Plugin Contributions
    0

    Default Re: Newbie - Need Help with Custom Template Design!

    Adding a background image is done in the stylesheet.

    This is a sample from the stylesheet in use on the Fan Odyssey site in my sig. Note the lines I highlighted in red.

    Code:
    /*wrappers - page or section containers*/
    #mainWrapper {
    	background-color: #000000;
      background-image: url('../images/space011.jpg');
    	text-align: left;
    	width: 100%;
    	vertical-align: top;
    	}
    
    #headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
    	margin: 0em;
    	padding: 0em;
    	}
    
    #logoWrapper{
      background-image: url('../images/space011.jpg');
    	background-repeat: repeat-x;
    	background-color: #000000;
    	height:110px;
    	width: 100%;
    	}
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  7. #7
    Join Date
    Nov 2006
    Location
    Dartmouth, NS Canada
    Posts
    2,378
    Plugin Contributions
    0

    Default Re: Newbie - Need Help with Custom Template Design!

    As for changing tables and removing lines, it sounds like that too is in the stylesheet, though to be sure I'd need to actually see what you've got and how you want it to look. Look for border definitions in the stylesheet, since that's what makes boxes look like boxes. Change one of the borders to red just to see what happens -- it won't hurt.

    Some starting tips:
    Use Firefox as your working web browser
    Install the Web Developer tools (or Firebug tool) in Firefox
    Use this combination to see what elements need to be changed.
    - in particular learn to use the Edit CSS and View Style Information tools in the Web Dev tools

    HTH

    Rob

  8. #8
    Join Date
    Sep 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Newbie - Need Help with Custom Template Design!

    Thank you for your help friends.

    Ken

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg