Page 54 of 72 FirstFirst ... 444525354555664 ... LastLast
Results 531 to 540 of 720
  1. #531
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Comstock Template

    Quote Originally Posted by pageblair View Post
    I want to eliminate the logo.gif
    create a 1 x 1 transparent image and save it to

    includes/templates/comstock/images/logo.gif

  2. #532
    Join Date
    Feb 2010
    Location
    ny
    Posts
    223
    Plugin Contributions
    0

    Default Re: Comstock Template

    How do I remove the logo.gif?

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

    Default Re: Comstock Template

    Quote Originally Posted by pageblair View Post
    How do I remove the logo.gif?
    create a 1 x 1 transparent image and save it to

    includes/templates/comstock/images/logo.gif

  4. #534
    Join Date
    Oct 2009
    Location
    Great Northwest
    Posts
    80
    Plugin Contributions
    0

    Default Re: Comstock Template

    Clyde,
    I've just installed Comstock and want to straighten out the logo and the tagline. The only changes made to the default stylesheet were the background colors for the #logowrapper and #navaccountwrapper declarations and the height adjustment for the tagline in the #taglinewrapper declaration. The logo px size has been changed in header.php to reflect the size of the logo.

    I have adjusted the #taglinewrapper to the following to move the tagline to the left and down:

    Code:
    #taglineWrapper {
    	margin: 0;
    position: absolute;
    top: 45px;
    left: 5px;
    	width: 360px;
    }
    from the original default of:

    Code:
    #taglineWrapper {
    	margin: 0;
    position: absolute;
    top: 20px;
    left: 250px;
    	width: 360px;	
    }
    At this point I'd like to adjust the logo down and centered to line up with the tagline (the tagline being centered with the logo vertically). I was able to get the tagline in the position I wanted vertically by adjusting the top: declaration but not the logo, after many tries of making adjustments in the #logowrapper declaration. I tried adding the top: declaration in #logowrapper but it failed to work.

    Also, I'd like to change the font size in the tagline to be slightly larger but was also unsuccessful there. Tried 3em and 2.5em but the font remained the same size. No doubt there's something I'm overlooking or am not aware of. Your default code is:

    Code:
    #tagline {
    	padding-top:10px;
    	color:#000;
    	font-size: 2em;
    	font-weight: bold;
    	text-align : center;
    	vertical-align: middle;
    	line-height:normal;
    	}
    My store site is: http://www.earnest-enterprises.com

    Thanks for being such a great supporter of your template. It IS appreciated.

    Rod

  5. #535
    Join Date
    Oct 2009
    Location
    Great Northwest
    Posts
    80
    Plugin Contributions
    0

    Default Re: Comstock Template

    On any product page my Add to Cart button is **in** the product description and needs to be above it. Any fix for this? See the attachment for what I mean.

    Name:  addtocart.jpg
Views: 193
Size:  13.1 KB

    Thanks!

    Rod

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

    Default Re: Comstock Template

    Quote Originally Posted by Earnest-Enterprises View Post
    Clyde,
    I've just installed Comstock and want to straighten out the logo and the tagline. The only changes made to the default stylesheet were the background colors for the #logowrapper and #navaccountwrapper declarations and the height adjustment for the tagline in the #taglinewrapper declaration. The logo px size has been changed in header.php to reflect the size of the logo.

    I have adjusted the #taglinewrapper to the following to move the tagline to the left and down:

    Code:
    #taglineWrapper {
    	margin: 0;
    position: absolute;
    top: 45px;
    left: 5px;
    	width: 360px;
    }
    from the original default of:

    Code:
    #taglineWrapper {
    	margin: 0;
    position: absolute;
    top: 20px;
    left: 250px;
    	width: 360px;	
    }
    At this point I'd like to adjust the logo down and centered to line up with the tagline (the tagline being centered with the logo vertically). I was able to get the tagline in the position I wanted vertically by adjusting the top: declaration but not the logo, after many tries of making adjustments in the #logowrapper declaration. I tried adding the top: declaration in #logowrapper but it failed to work.

    Also, I'd like to change the font size in the tagline to be slightly larger but was also unsuccessful there. Tried 3em and 2.5em but the font remained the same size. No doubt there's something I'm overlooking or am not aware of. Your default code is:

    Code:
    #tagline {
    	padding-top:10px;
    	color:#000;
    	font-size: 2em;
    	font-weight: bold;
    	text-align : center;
    	vertical-align: middle;
    	line-height:normal;
    	}
    My store site is: http://www.earnest-enterprises.com

    Thanks for being such a great supporter of your template. It IS appreciated.

    Rod
    find and make the following change to this declaration in the stylesheet.css

    #logo {
    margin-top:45px;
    float: left;
    }

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

    Default Re: Comstock Template

    Quote Originally Posted by Earnest-Enterprises View Post
    On any product page my Add to Cart button is **in** the product description and needs to be above it. Any fix for this? See the attachment for what I mean.

    Name:  addtocart.jpg
Views: 193
Size:  13.1 KB

    Thanks!

    Rod
    in which browser?

    I've viewed the site in FF, IE7/8, Safari, Opera and Chrome and couldn't see what you describe.

  8. #538
    Join Date
    Oct 2009
    Location
    Great Northwest
    Posts
    80
    Plugin Contributions
    0

    Default Re: Comstock Template

    Clyde,
    I'm using IE8. When clicking on any product to see details, price, etc. (product page) I see what I described in the attachment above. The Add to Cart is not above or below the description but on top of the description (text). There may be some issues with my laptop/resolution where nobody else may see what I see.
    I have opted to use Comstock after having some issues with another template so have selected Comstock from the admin (and also doing the reset). However, I'm thinking there may be some conflicts so I will be rebuilding my store and using Comstock exclusively. That may eliminate the problem.
    As to the logo issue I had your fix worked fine and drop the logo down in the header where I needed it. Thanks for that!

    Rod

  9. #539
    Join Date
    Oct 2009
    Location
    Great Northwest
    Posts
    80
    Plugin Contributions
    0

    Default Re: Comstock Template

    Clyde,
    Where (in the stylesheet?) can I adjust the vertical position of the Add to Cart button on the products page?

    Thanks...

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

    Default Re: Comstock Template

    Quote Originally Posted by Earnest-Enterprises View Post
    Clyde,
    Where (in the stylesheet?) can I adjust the vertical position of the Add to Cart button on the products page?

    Thanks...
    open includes/templates/comstock/css/product_info.css

    find the following declaration and make the highlighted changes.

    #productDescriptionBox {
    margin-top:10px;
    padding:.2em 0;
    clear:both;
    float:left;
    width:80%;
    }

 

 
Page 54 of 72 FirstFirst ... 444525354555664 ... LastLast

Similar Threads

  1. v151 Reviews sidebox Comstock template
    By discoverytdi in forum Addon Templates
    Replies: 4
    Last Post: 7 Feb 2013, 04:49 AM
  2. Comstock template question
    By discoverytdi in forum Addon Templates
    Replies: 3
    Last Post: 11 Sep 2011, 10:28 PM
  3. Comstock template
    By grandpaj in forum Addon Templates
    Replies: 1
    Last Post: 25 Oct 2010, 10:09 PM
  4. Comstock template
    By grandpaj in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 22 Oct 2010, 04:02 AM
  5. Comstock Template Help -
    By Mrsb in forum Addon Templates
    Replies: 1
    Last Post: 23 Mar 2009, 07:14 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR