Page 6 of 12 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 116
  1. #51
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    Glenn, funny you mentioned that because I backed up my files yesterday. I went to them and looked and even when I open my backed up css file it still does the same crap. I've found that I can use the "wrap" feature to make it list everything down the page instead of across but then it's all jumbled together like like a paragraph and nothing is aligned to the left anymore. I gotta be honest, this web developer package is not very impressive so far.

    Ian

  2. #52
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Page layout question

    Well, aside from this unfortunate occurrence, it has a lot of very powerful and useful tools. I use it many times every day, and couldn't do some of the diagnostics I do without it (and occasionally the Firebug extension too).

    Was the backup from before you started using the Edit CSS?

  3. #53
    Join Date
    Jun 2007
    Location
    Shropshire UK
    Posts
    134
    Plugin Contributions
    0

    Default Re: Page layout question

    Quote Originally Posted by r1formetoo View Post
    I gotta be honest, this web developer package is not very impressive so far.
    Ian
    You may be able to reformat your stylesheet by pasting it in to the CSS Formatter and Optimiser at the following address...don't blame me if it doesn't work though..
    http://www.cleancss.com/

    As a matter of interest - what (TEXT) editing tools are you using to do your editing ?
    The web developer tools are very useful - I tend to use similar tools - only on Opera instead - my personal preference for browser.
    The thing with any of these tools though - is that is all they are "Tools" - and as with any other type of tool - you need to know how it is used to get the desired result - kinda like using a wrench to hammer a nail in - it will work sometimes - but better to use a hammer ?
    Unfortunately - when you first start with CSS (and zen) you will probably find you have a very steep learning curve - it does get easier (honest) but very often the only way to learn about this stuff is to "learn by your mistakes"
    My own experience has been that I first started "messing" with zen cart probably more than 2 years ago - gave up on several occasions (or to be more accurate - took a rest) and came back to it with a fresh mind - each time it has become a bit easier - during those rest periods - I messed about with CSS quite a bit - but there is a lot to learn...
    Any issues you have with Internet Explorer - are just that - IT is a (in my opinion) sorry excuse for a browser - something you will find will cause you many headaches trying to find why it fails to render a page correctly - which renders perfectly well in most other browsers....
    Might be a good idea to try to keep some clean backup copies of what you are editing too...

    Good Luck - happy new year..

  4. #54
    Join Date
    Feb 2008
    Location
    Southern California
    Posts
    142
    Plugin Contributions
    0

    Default Re: Page layout question

    Quote Originally Posted by r1formetoo View Post
    Your computer may be loosing a lot of packets? I'm going through the css tutorial at w3schools right now so hopefully my next zencart css attempt will be more successful.

    Ian
    I can see that Ian. Keep going! I enjoy reading this thread as I am very interested myself. CSS for zen cart takes patience, I hate it but also love the CSS?

    Happy New Year anyway, and to vynyl! Keep up the great work! Sorry this post is not constructive but I'll toss in from time to time if I can be a help.
    Last edited by saitomedia; 1 Jan 2009 at 02:51 PM.

  5. #55
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    Hey Glenn, I'm still trying to figure out how to change colors of my links so that the Information links and the Categories links are the same color green, yet all the while not changing my nice yellow ez pages links in the grass. It's easy to find the code for the yellow but I don't understand how the code

    a:link,#navEZPagesTOC ul li a
    { color:#F7C808;
    text-decoration:none; }

    a:visited
    { color:#F7C808;
    text-decoration:none; }

    a:hover,#navEZPagesTOC ul li a:hover,#navMain ul li a:hover,#navSupp ul li a:hover,#navCatTabs ul li a:hover
    { color:#000; }

    wants to change all the links. I can only gather that somehow the computer considers all these links to be ez pages links and that I somehow need to break up these into different classes? If that's right I'm not really sure how to break it all up since I can't seem to find it in my stylesheet all jumbled together. Perhaps I don't know what they are calling the Information links....

    Ian

  6. #56
    Join Date
    Jan 2009
    Posts
    1
    Plugin Contributions
    0

    application error Re: How do add my logo to the main page

    Im new to this community, i bought a zen cart templete and have been having trouble changing the templete logo to my custome logo.

    www.quickerprinter.net currently i have no logo banner please some one help me (please view my site before responding)

    Thanks

  7. #57
    Join Date
    Mar 2007
    Location
    AZ
    Posts
    1,911
    Plugin Contributions
    2

    Default Re: How do add my logo to the main page

    Quote Originally Posted by lucid3602003 View Post
    Im new to this community, i bought a zen cart templete and have been having trouble changing the templete logo to my custome logo.

    www.quickerprinter.net currently i have no logo banner please some one help me (please view my site before responding)

    Thanks
    You, unfortunately, purchased a TemplateMonster template.
    There should have been an image in the area to left of the languages/shopping cart box. Did you delete it?

    Tina

  8. #58
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: How do add my logo to the main page

    Quote Originally Posted by lucid3602003 View Post
    Im new to this community, i bought a zen cart templete and have been having trouble changing the templete logo to my custome logo.

    www.quickerprinter.net currently i have no logo banner please some one help me (please view my site before responding)

    Thanks
    Lucid, try reading the tutorial below. That will likely help shed some light for you. I'd like to ask you to please start another thread concerning this if you need help. What little I know I'll be glad to share but I'd like to keep this thread on it's topic please.

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

  9. #59
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: How do add my logo to the main page

    a:link,#navEZPagesTOC ul li a

    This refers to all links sitewide, and to specifically links inside a list in the #navEZPagesTOC.

    a:visited

    This refers to all links that have been clicked recently.

    a:hover,#navEZPagesTOC ul li a:hover,#navMain ul li a:hover,#navSupp ul li a:hover, #navCatTabs ul li a:hover

    This refers to all links, and to a string of specific links, that are being hovered over by the mouse.

    Any time you have a group of selectors getting one treatment, and you want one of those selectors to be different, remove that one from the list and give it its own rule.
    In this case, you want the information and categories links to be different. Currently they presumably fall under the "all links" heading; If you address them by name you can control them individually. Each sidebox has a unique id which is the sidebox's name, in this case #information and #categories. Add to your stylesheet

    #information a, #categories a {color: #00ff00;}

    This will refer to links inside the information and categories boxes, and nowhere else.

  10. #60
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    That I understand. Now we're cookin with gas. Thanks.

    Ian

 

 
Page 6 of 12 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. Main Page Layout Question
    By kinembe in forum Basic Configuration
    Replies: 2
    Last Post: 7 Jan 2012, 08:07 PM
  2. Product Listing display page / category page layout change question
    By cgarforth in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 16 Dec 2010, 02:37 PM
  3. Home Page Layout Question
    By EPA570 in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 2 Jul 2009, 09:54 AM
  4. Page layout question
    By tbroush in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 3 Apr 2007, 04:59 PM
  5. Question on page layout changes
    By tanky in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 3 Jul 2006, 10:04 PM

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