Page 1 of 2 12 LastLast
Results 1 to 10 of 3041

Hybrid View

  1. #1

    Default featured box floating? to wrong side of page

    Hi again,
    I've been editing the colours/etc. of the page again, and I noticed a slight problem that I can't seem to figure out. (although given how much i know about php and css, i'm not surprised ) Everything seems to be loading all right, but when you load the 'specials' page and i don't have any defined from the admin, it floats the featured box contents over to the left side of the page instead of on the right where it should be.
    here's a link:
    http://tiffstrinkets.com/index.php?main_page=specials

    The other thing I noticed is that occasionally the copyright info (this site designed by sagefish.com, powered by zen cart) is displayed in the middle of the page but when you refresh it's fine. the ip address never does this, just the copyright and legal display.
    is this an easy fix, or is it just one of those things that happens sometimes?
    I've got a screenshot but as it's large, i won't upload it yet.

    thanks so much! everybody here is so helpful.
    Tiff
    Tiffany Rose
    Frozen Rose Design

  2. #2

    Default Re: Apple Zen Support Thread

    Hi Jade, sorry to bug you again.

    I'm trying to use the .htaccess redirect so that my page doesn't load with the 'errors on page' message in IE7. I've added the 'additions to' the .htaccess file and specified my domain, but for whatever reason it's not redirecting the page. (i am on a linux server, btw.)

    the error specifies that it's looking for csshover.htc in the root folder (www.mydomain.com/csshover), so i attempted to add the .htaccess file in the root directory thinking that it might solve the problem, but it just broke the site and gave me the 'page not found' page.

    not sure what i'm doing wrong, but i'm sure it's a simple solution like always... i'm slowly learning! i swear!

    http://www.tiffstrinkets.com (loads with an error in IE)
    http://tiffstrinkets.com (loads error free as far as i know!)

    thanks so much.
    Tiff
    Tiffany Rose
    Frozen Rose Design

  3. #3

    Default Re: Apple Zen Support Thread

    AAAAND here's the code from my .htaccess file.

    Code:
    # $Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
    #
    # This is used with Apache WebServers
    # The following blocks direct HTTP requests in this directory recursively
    #
    # For this to work, you must include the parameter 'Limit' to the AllowOverride configuration
    #
    # Example:
    #
    #<Directory "/usr/local/apache/htdocs">
    #  AllowOverride Limit
    #
    # 'All' with also work. (This configuration is in your apache/conf/httpd.conf file)
    #
    # This does not affect PHP include/require functions
    #
    # Example: http://server/catalog/includes/application_top.php will not work
    
    <Files *.php>
    Order Deny,Allow
    Deny from all
    </Files>
    
    
    ## Add these to your .htaccess file so that only one way to your site exists, either http://yoursite.com and http://www.yoursite.com ... the following adds the www if it's missing:
    
    ##RewriteEngine On
    ##RewriteCond %{HTTP_HOST} ^yoursite.com$ [NC]
    ##RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L]
    
    ## If you'd like your site to go to http://mysite.com instead of http://www.mysite.com, add these changes instead:
    
    ##RewriteEngine On
    ##RewriteCond %{HTTP_HOST} ^www.tiffstrinkets.com$ [NC]
    ##RewriteRule ^(.*)$ http://tiffstrinkets.com/$1 [R=301,L]
    
    ## the following makes sure the correct mime type is sent for the .htc file
    AddType text/x-component .htc
    Tiffany Rose
    Frozen Rose Design

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by misticloudz View Post
    Hi Jade, sorry to bug you again.

    I'm trying to use the .htaccess redirect so that my page doesn't load with the 'errors on page' message in IE7. I've added the 'additions to' the .htaccess file and specified my domain, but for whatever reason it's not redirecting the page. (i am on a linux server, btw.)

    the error specifies that it's looking for csshover.htc in the root folder (www.mydomain.com/csshover), so i attempted to add the .htaccess file in the root directory thinking that it might solve the problem, but it just broke the site and gave me the 'page not found' page.

    not sure what i'm doing wrong, but i'm sure it's a simple solution like always... i'm slowly learning! i swear!

    http://www.tiffstrinkets.com (loads with an error in IE)
    http://tiffstrinkets.com (loads error free as far as i know!)

    thanks so much.
    Tiff
    Ok, so, if http://tiffstrinkets.com works, and http://www.tiffstrinkets.com doesn't, that tells me that your site is defined as http://tiffstrinkets.com in your configure.php files.

    So your .htaccess should look like this EXACTLY (get rid of everything else):

    Code:
    ## If you'd like your site to go to http://mysite.com instead of http://www.mysite.com, add these changes instead:
    
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^www.tiffstrinkets.com$ [NC]
    RewriteRule ^(.*)$ http://tiffstrinkets.com/$1 [R=301,L]
    
    ## the following makes sure the correct mime type is sent for the .htc file
    AddType text/x-component .htc
    It DOES belong in the root of the site, while csshover.htc belongs in the includes folder.

  5. #5

    Default Re: Apple Zen Support Thread

    Can you tell me where the green color at the top of the page comes from?: http://www.doodlebuckets.com/store/
    Where the Home and Login text at the top of the page is...

    Thanks! Amy

  6. #6

    Default Re: Apple Zen Support Thread

    Can you tell me how to change the color of the bar at the top of the page where the Home and Login text is? Thanks! Amy

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by Doodlebuckets View Post
    Can you tell me how to change the color of the bar at the top of the page where the Home and Login text is? Thanks! Amy
    Very first thing in the stylesheet:
    #navMainWrapper {
    background:#D5E88F;
    }

  8. #8

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Very first thing in the stylesheet:
    #navMainWrapper {
    background:#D5E88F;
    }
    Well, I am working on this site http://www.giftsofcharacter.com/catalog/ and I am using the red template and the stylesheet show the red color but it's not showing up on the page. What am I doing wrong?

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by Doodlebuckets View Post
    Well, I am working on this site http://www.giftsofcharacter.com/catalog/ and I am using the red template and the stylesheet show the red color but it's not showing up on the page. What am I doing wrong?
    The stylesheet that is online on that site is not red, it is white:


    #navMainWrapper {
    background:#ffffff;
    }

  10. #10

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    The stylesheet that is online on that site is not red, it is white:


    #navMainWrapper {
    background:#ffffff;
    }
    Yes, I deleted all the other colors and it worked with the red at the top but we decided we liked white better after all! Fickle, I know :o) Thanks for the reply.
    Amy

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01: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