Page 1 of 2 12 LastLast
Results 1 to 10 of 18
  1. #1
    Join Date
    Sep 2006
    Posts
    257
    Plugin Contributions
    0

    Default style sheet questions

    i have seen a few zencart sites with dotted lines around the actual catalog page in the middle. i looked into the css file... what is the correct verbiage to make it dotted?

    also... in the css file it talks about px border top and bottom... what about right and left? i would like a 3d effect on my sideboxes... bottom and left padding would do that.... i tried 0px, 2px, 0px, 2px assuming the 4th px would be right.. it didnt work....

    also... on my footer... i created a footer image in the css... but it is slightly padded on the top with what appears to be the tile_back.gif ... i cant for the life of me find where that is coming from...


    thanks in advance

  2. #2
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: style sheet questions

    These questions are difficult to answer without answers or sight of your site. But I can address the second. Whenyou see four figures such as in border: 1px 2px 3px 4px; they read clockwise from the top, so the fourth is actually "left".
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

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

    Default Re: style sheet questions

    Me mate is correct and from your description this could be many things...taking a gusess if you want the center column with a dotted border this code will do this. you might have to add space to other things to set it off the correct amount.
    Code:
    .centerColumn {
    	background-color: #FFF0F5;
    	border: 1px dotted;
    	border-color: #9B11A1;
    	}
    Of course you can adjust the colors and other things
    Zen-Venom Get Bitten

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

    Default Re: style sheet questions

    Code:
    .centerColumn {
    	background-color: #FFF0F5;
    	border: 1px dotted;
    	border-color: #9B11A1;
    	}
    These two lines can be combined to read like this:
    Code:
    border: 1px dotted #9B11A1;
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  5. #5
    Join Date
    Sep 2006
    Posts
    257
    Plugin Contributions
    0

    Default Re: style sheet questions

    ok the site is www.yourlingerieparty.com look at the footer... for the last question about the padding... as far as the sideboxes... the padding on the bottom is

    .leftBoxContainer, .rightBoxContainer {
    margin: 0em;
    border: 5px solid #9a9a9a;
    border-bottom: 5px solid #ffffff;

    i want it on the left side as well so that it looks a little 3d...
    i tried just border: without the border-right:


    any ideas? thanks again

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: style sheet questions

    Why do you need an image that is 1250px wide?

    #footer {
    background-image: url(../images/footer.gif);
    background-repeat: repeat-x;
    margin: 0em;
    color: #000000
    text-align: center;
    float: center;
    padding: 0em;
    width: 1250px;
    }

    Why not make the overall width 100% then you wont get the overruns I'm seeing.

  7. #7
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: style sheet questions

    .leftBoxContainer, .rightBoxContainer {
    margin: 0em;
    border: 5px solid #9a9a9a; remove this
    border-bottom: 5px solid #ffffff;
    border-left: 5px solid #ffffff; add this

    i want it on the left side as well so that it looks a little 3d...
    i tried just border: without the border-right:
    remove the border: declaration
    and add border-left: 5px solid #ffffff;

  8. #8
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: style sheet questions

    Quote Originally Posted by kuroi View Post
    These questions are difficult to answer without answers or sight of your site.
    What was I writing? It should have read "difficult to answer without examples" and of course I'd already been looking at your site in response to another of your questions. Apologies. Fortunately you have been getting good advice from people less sleep-deprived than me.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  9. #9
    Join Date
    Sep 2006
    Posts
    257
    Plugin Contributions
    0

    Default Re: style sheet questions

    i tried to do 100% and nothing happened.... i did 100% on another site i have (it worked great) but this site seems to want to respond to px instead..... btw... what overruns are you seeing... i am using ie7.... it looks fine... of course not everyone uses ie.... I appreciate your help......

  10. #10
    Join Date
    Sep 2006
    Posts
    257
    Plugin Contributions
    0

    Default Re: style sheet questions

    kuroi, no problem.... one of the things i love about zencart is the support forum. you guys are the best... another question i asked got me an answer to some of my problems in this question.. i am a fast learner..... this is my 4th zen site... altho this one i am pushing the envelope to see what zen cart really has to offer. I have seen templates for sale that are very very nice... i want to learn how to do those myself.... btw clyde... thanx for the advice... dotted lines working now got the border on the sideboxes and because of an answer in another thread the bottom is no longer wrapped... i am still interested, however, in knowing what overruns you saw and what browser so that i may correct them.. thanx

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. categories style sheet ?
    By trucurrent in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 19 Oct 2009, 05:23 PM
  2. few questions about style sheet
    By si86 in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 7 Jul 2009, 09:18 PM
  3. Style Sheet Question
    By Charlie Denver in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 26 Jul 2007, 09:20 AM
  4. Is default style sheet read at all while custom style sheet is on?
    By cochlear in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 12 May 2007, 04:14 PM
  5. 2 style sheet problems
    By rstevenson in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 6 Mar 2007, 01:21 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