Page 17 of 47 FirstFirst ... 7151617181927 ... LastLast
Results 161 to 170 of 462
  1. #161
    Join Date
    Jan 2007
    Location
    Atlanta, GA
    Posts
    73
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    re: the alignment...

    go through the files both in the "simple_zen" templates folder, and the "default_template" templates folder, and especially on the tpl_(problempage) and the tpl_main_page, and look for instances of the following :

    Code:
    <br class="clearBoth" />    OR <br style="clear:both;" />
    change them to
    Code:
    <div class="clearBoth" />
    that will fix a lot of little layout problems.

    also make sure that any IE hacks used in the stylesheet use the right syntax.

    as far as font sizes, see what divs the fonts in question are located in, or what styles are being applied, and then check your stylesheet to make changes to those particular ones.
    ~~give me feedback on my home decor store~~

    ~~sleep is a symptom of caffeine deprivation~~

    ~~COFFEE.SYS Not Found: User startup disabled.~~

    ~~ if(pot.coffee=EMPTY) {programmer->;brain=OFF}; ~~

  2. #162
    Join Date
    Feb 2007
    Location
    Canada
    Posts
    83
    Plugin Contributions
    0

    help question Would LOVE some BACKGROUND help???

    I have been sitting here reading up again as usual trying desperately to get rid of the dreary gray background from my simple-zen template without any luck...

    I have uploaded my background image as both a gif and jpg - neither worked - to the /includes/templates/simple_zen/images folder as well as the main /images folder on the root directory...nada...

    I changed my stylesheet_new.css "body" and "main wrapper" sections trying to add background images but still no luck..I have read numerous times about replies on this but the answers never seem to work for me..I must editing my css wrong somewhere or uplodaing the files to the wrong spot...

    Please help when you get a sec...

    I just noticed also I must have accidentally changed something I should not have as at the top left hand corner where HOME and LOG IN are the words LOG In seem to be chopped off now...geesh...I might destroy this thing yet!

    Thanks,
    Moy
    www.bydesigncreations.ca
    Last edited by BDCreations; 26 Feb 2007 at 01:56 AM.

  3. #163
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Would LOVE some BACKGROUND help???

    Quote Originally Posted by BDCreations View Post
    I have been sitting here reading up again as usual trying desperately to get rid of the dreary gray background from my simple-zen template without any luck...

    I have uploaded my background image as both a gif and jpg - neither worked - to the /includes/templates/simple_zen/images folder as well as the main /images folder on the root directory...nada...

    I changed my stylesheet_new.css "body" and "main wrapper" sections trying to add background images but still no luck..I have read numerous times about replies on this but the answers never seem to work for me..I must editing my css wrong somewhere or uplodaing the files to the wrong spot...

    Please help when you get a sec...

    I just noticed also I must have accidentally changed something I should not have as at the top left hand corner where HOME and LOG IN are the words LOG In seem to be chopped off now...geesh...I might destroy this thing yet!

    Thanks,
    Moy
    www.bydesigncreations.ca
    Can I see a link to the store, please?

  4. #164
    Join Date
    Jan 2007
    Location
    Atlanta, GA
    Posts
    73
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    to change the page background (the part OUTSIDE the main body of the store) look at the body section in the style sheet... change the following value to what color you want or add an image as shown in the next example..

    Code:
    body {background:#999;}


    to change the store background (the part inside the store boundaries) change the following:
    (you can use the color value, or add the background image, or both... )

    Code:
    #mainWrapper {background: #fdfde9 url("../images/your_background.gif"); }
    ~~give me feedback on my home decor store~~

    ~~sleep is a symptom of caffeine deprivation~~

    ~~COFFEE.SYS Not Found: User startup disabled.~~

    ~~ if(pot.coffee=EMPTY) {programmer->;brain=OFF}; ~~

  5. #165
    Join Date
    Sep 2006
    Location
    Beerwah. QLD. Australia
    Posts
    79
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Is this the wrapper to change to add image

    /*wrappers - page or section containers*/
    div#mainWrapper {
    text-align: left;
    width: 750px;
    vertical-align: top;
    background:#fff;
    border:5px solid #333;
    }

    Ron

  6. #166
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by RKB View Post
    Is this the wrapper to change to add image

    /*wrappers - page or section containers*/
    div#mainWrapper {
    text-align: left;
    width: 750px;
    vertical-align: top;
    background:#fff;
    border:5px solid #333;
    }

    Ron
    If you want an image for the whole site, do that with the body tag in the css.

  7. #167
    Join Date
    Jan 2007
    Location
    Atlanta, GA
    Posts
    73
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Yes, that is the tag to change for the main wrapper... you can see the effect if you take a look at my site.... I have a background image in the main wrapper, and a background color in the body tag.
    ~~give me feedback on my home decor store~~

    ~~sleep is a symptom of caffeine deprivation~~

    ~~COFFEE.SYS Not Found: User startup disabled.~~

    ~~ if(pot.coffee=EMPTY) {programmer->;brain=OFF}; ~~

  8. #168
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by grayceworks View Post
    Yes, that is the tag to change for the main wrapper... you can see the effect if you take a look at my site.... I have a background image in the main wrapper, and a background color in the body tag.
    But didn't he say he wanted a background image on the outermost part of the screen? In the outer grey portion? That would be in the BODY tag. You're confusing me here, LOL, by answering the same question I answer but differently. I'm losing track of what the question was.

  9. #169
    Join Date
    Jan 2007
    Location
    Atlanta, GA
    Posts
    73
    Plugin Contributions
    0

    Default Re: Would LOVE some BACKGROUND help???

    He didn't exactly say which part, but I assumed it was the "outside" part due to the mention of it being the grey section.

    He had mentioned trying BOTH the "body" tag, and the "main wrapper" tag, so I gave examples of both, to show which sections of each would be changed, depending on the effect he wanted, with explanations of which tag changed which part of the page...

    Since he couldn't get his image to show on either tag, I showed an example of how an image would be set as the background, in case it was something in the way he was coding it...

    If he wants the image in the body tag, he can just copy what the format is from the second example, as I had mentioned in my original post to him. He was checking to make sure he was looking at the right "body" tag.

    *winks* He had asked me to clarify the comment I made earlier, so I did.

    Quote Originally Posted by BDCreations View Post
    I have been sitting here reading up again as usual trying desperately to get rid of the dreary gray background from my simple-zen template without any luck...

    I have uploaded my background image as both a gif and jpg - neither worked - to the /includes/templates/simple_zen/images folder as well as the main /images folder on the root directory...nada...

    I changed my stylesheet_new.css "body" and "main wrapper" sections trying to add background images but still no luck..I have read numerous times about replies on this but the answers never seem to work for me..I must editing my css wrong somewhere or uplodaing the files to the wrong spot...

    Please help when you get a sec...

    I just noticed also I must have accidentally changed something I should not have as at the top left hand corner where HOME and LOG IN are the words LOG In seem to be chopped off now...geesh...I might destroy this thing yet!

    Thanks,
    Moy
    www.bydesigncreations.ca
    ~~give me feedback on my home decor store~~

    ~~sleep is a symptom of caffeine deprivation~~

    ~~COFFEE.SYS Not Found: User startup disabled.~~

    ~~ if(pot.coffee=EMPTY) {programmer->;brain=OFF}; ~~

  10. #170
    Join Date
    Dec 2006
    Posts
    18
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    If anyone can so help me set ezpages up with the simple zen le me know. i've been lurking to find the answer now for a few hours.

 

 
Page 17 of 47 FirstFirst ... 7151617181927 ... LastLast

Similar Threads

  1. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 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