Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 32
  1. #21
    Join Date
    May 2008
    Posts
    349
    Plugin Contributions
    0

    Default Re: Simple Question err How you add content to your Pages?

    Oh forgot to ask which Web Developer add-on for firefox allows you to point your cursor at a part of a website and it tells you exactly what code in the stylesheet controls it???

  2. #22
    Join Date
    Jan 2008
    Posts
    1,700
    Plugin Contributions
    6

    Default Re: Simple Question err How you add content to your Pages?

    It's called Web Developer.
    https://addons.mozilla.org/en-US/firefox/addon/60

    Yes, you can still use IE.

    CSS is probably the area I know least about in computing. If what I suggested earlier doesn't work, I recommend posting these questions in the stylesheet forum.
    http://www.zen-cart.com/forum/forumdisplay.php?f=54

  3. #23
    Join Date
    May 2008
    Posts
    349
    Plugin Contributions
    0

    Default Re: Simple Question err How you add content to your Pages?

    Thanks for that

    I was wondering if its possible to make the pages wider, and the product picures a bit bigger?

    If you look at my site http://shulab.co.uk/zencart/ i wanted it a bit wider and the product pictures a bit bigger like http://www.topshop.com/webapp/wcs/st...angId=-1&top=Y

    I was wondering if its also possible to put a wallpaper in the background like Topshops website?

    Thanks

  4. #24
    Join Date
    Jan 2008
    Posts
    1,700
    Plugin Contributions
    6

    Default Re: Simple Question err How you add content to your Pages?

    In your stylesheet, you have this:
    Code:
    #mainWrapper {
    background-color: #ffffff;
    text-align: left;
    width: 750px;
    vertical-align: top;
    border: 1px solid #9a9a9a;
    }
    Change the text in red to whatever you prefer.
    If you want, you can specify a percentage instead.

    To change the size of the images, I think you need to go to..
    Admin>Config>Images
    There you'll find various settings to do with width and height.
    For example, you might want to experiment with..
    Product Info - Image Width
    and
    Product Info - Image Height

    Regarding the background image, in your stylesheet you have this:
    Code:
    body {
    margin: 0;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 62.5%;
    color: #000000;
    background-color: #e5edf5;
    }
    Change it to this, where your_pic is your image:
    Code:
    body {
    margin: 0;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 62.5%;
    color: #000000;
    background-color: #e5edf5;
    background-image: url(../images/your_pic.gif);
    }
    A lot of this information can be found by searching either the forum or the tutorials.
    Please search before your next post.

  5. #25
    Join Date
    Jan 2008
    Posts
    1,700
    Plugin Contributions
    6

    Default Re: Simple Question err How you add content to your Pages?

    your_pic should be in includes\templates\your_template\images

  6. #26
    Join Date
    May 2008
    Posts
    349
    Plugin Contributions
    0

    Default Re: Simple Question err How you add content to your Pages?

    HELP!!!

    I tried transferring my zencart folder to my domain and now i cant log in i go to
    shulab.co.uk/admin/login.php i type my password in then it transfers to http://shulab.co.uk/shulab.co.uk/admin/login.php and displays The requested URL /shulab.co.uk/admin/login.php was not found on this server.

    my site doesnt quite look right either http://www.shulab.co.uk/
    Tried looking at the tutorials and forums and cant seem to find answer.

    Tried Fix Cache Key not sure if i followed instructions carefully enough
    * 1. Make sure the DIR_FS_SQL_CACHE setting is correct in your /includes/configure.php file. ( I think ive done it right )
    * 2. Copy this file to the folder where "index.php" exists for your Zen Cart site (copy the fix cache key file, or the configue,php file???)
    * 3. Run it ( How??? )


  7. #27
    Join Date
    Jan 2008
    Posts
    1,700
    Plugin Contributions
    6

    Default Re: Simple Question err How you add content to your Pages?

    Have you been following these steps?
    https://www.zen-cart.com/tutorials/i...hp?article=122

    Quote Originally Posted by hcd888 View Post
    * 2. Copy this file to the folder where "index.php" exists for your Zen Cart site (copy the fix cache key file, or the configue,php file???)
    the fix cache key file

    Quote Originally Posted by hcd888 View Post
    * 3. Run it ( How??? )
    I assume you just type in the URL of where the file is located.
    e.g. yourdomain.com/fix_cache_key.php

  8. #28
    Join Date
    May 2008
    Posts
    349
    Plugin Contributions
    0

    Default Re: Simple Question err How you add content to your Pages?

    Hi, thats the main tutorial i been reading. I ran the fix cache key but it says no changes required.

    Would it work if i reinstalled everything? Or would it be better trying to find out the problem?

  9. #29
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: Simple Question err How you add content to your Pages?

    did you make the changes in your config file to reflect the change in directories?
    also is there a .htaccess file in your public_html directory? if there is try changing its name to htaccess.bak (same as removing it without deleting it) and see if the site starts to work
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  10. #30
    Join Date
    May 2008
    Posts
    349
    Plugin Contributions
    0

    Default Re: Simple Question err How you add content to your Pages?

    No theres no htaccess file in my public_html directory.

    I've managed to log in now by changing:
    define('DIR_WS_ADMIN', '/shulab.co.uk/admin/');
    define('DIR_WS_CATALOG', '/shulab.co.uk/');
    define('DIR_WS_HTTPS_ADMIN', '/shulab/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/shulab.co.uk/');

    To:
    define('DIR_WS_ADMIN', '/admin/');
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_ADMIN', '/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/');

    But for some reason my website still dosent look right. www.shulab.co.uk Tried changing the template, dosent seem to work.

 

 
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. How did you arrive at your Tare Weight? Your Advice Please.
    By JasonDamisch in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Sep 2009, 03:13 AM
  2. EZ-pages question - How to add existing pages
    By cmku in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 4 Feb 2008, 11:57 AM
  3. how do you add another content area to the index page?
    By magneteye in forum General Questions
    Replies: 0
    Last Post: 4 Aug 2007, 12:33 AM

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