Page 2 of 35 FirstFirst 123412 ... LastLast
Results 11 to 20 of 347
  1. #11
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Editable Home Page Centerboxes

    Quote Originally Posted by Streaming View Post
    In the middle of a brainstorm. Where's the code for changing the Heading Titles to my own customized headings i.e. changing middle box 1, 2 and 3 to my own titles?
    Many thanks.
    This is setup just like the sideboxes, so it will be in the language files.. I'm at work right now so I don't have the mod in front of me.. But it should be fairly obvious..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #12

    Default Re: Editable Home Page Centerboxes

    Said I was in the middle of a brainstorm Took me all of 2 minutes this morning to change it
    Thanks a lot, your help is much appreciated.

  3. #13
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Update Coming - Improved Stylesheet

    So I think I've finally nailed what the stylesheet SHOULD look like..

    I wasn't happy with the entering, and withthe fact that the boxes wouldn't all be the same length if one box contained slightly more content than the others.

    I used these resources:
    http://www.cssplay.co.uk
    http://www.dustindiaz.com/min-height-fast-hack/

    These site's helped me nail down how to get all the boxes to display correctly at the same height in both IE and Firefox.

    I've tested this and good news is that it appears to work with both IE and Firefox.. I've posted the stylesheet with the changes here in case anyone wants this right now.. However, I will be submitting an update to the add-on to the downloads section this weekend.. If anyone spots flaws in my CSS I would love some feedback..

    In the meantime, hope others find this helpful/useful!

    Code:
    #navColumnMiddleWrapper {
        margin: auto;
        overflow:hidden; 
        }
    
    #middlebox_1 {
    /*DO NOT MODIFY THE FLOAT OR WIDTH UNLESS YOU KNOW WHAT YOU ARE DOING!!*/
        float:left; 
        width:33%;
        }
        
    #middlebox_2 {
    /*DO NOT MODIFY THE FLOAT OR WIDTH UNLESS YOU KNOW WHAT YOU ARE DOING!!*/
        float:left;
        width:33%; 
        }
    
    #middlebox_3 {
    /*DO NOT MODIFY THE FLOAT OR WIDTH UNLESS YOU KNOW WHAT YOU ARE DOING!!*/
        float:left; 
        width:33%;
        }
    
    #middlebox_1, #middlebox_2, #middlebox_3 {
        margin: 1px;
        padding-bottom: 1em; 
        margin-bottom: 1em;
        }    
    
    h2.middleBoxHeading, h2.middleBoxHeading a {
        font-size: 2em;
        color: #ffffff;
        }
    
    h2.middleBoxHeading a:hover {
        color: #FFFF33;
        text-decoration: none;
        } 
        
    .middleBoxHeading {
        margin: 0em;
        background-color: #FF6699;
        padding: 0.5em 0.2em;
        text-align: center;
        }
    
    .middleBoxContainer {
        margin-top: 1.5em;
        }
    
    .middleBoxContent {
        padding: 0.4em;
        min-height:300px;
            /*Another stupid IE hack. The next two statements set min-height in IE's dumb-a$$ed browser*/
        height:auto !important;
        height:300px;
        }
    
    .middleBoxContent {
        padding-bottom:32767px;
        margin-bottom:-32767px;
        }
    
    #middlebox1Content {
        background:#e0d0d0;
        }
        
    #middlebox2Content {
        background:#c0c0c0;
        }
    
    #middlebox3Content {
        background:#e0d0d0;
        }
    Last edited by DivaVocals; 13 Mar 2010 at 12:49 AM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #14
    Join Date
    Jul 2007
    Posts
    324
    Plugin Contributions
    0

    Default Re: Editable Home Page Centerboxes

    I installed this on my test home computer before installing it on my hosting system. I got info. in the middle - no colored header like my side boxes have and how do I place them beside each other?

    Thank you
    LadyDee

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

    Default Re: Editable Home Page Centerboxes

    It sounds like you don't have the stylesheet correctly applied. Check the folder location of the mod's stylesheet and its content *on your server*.

  6. #16
    Join Date
    Jul 2007
    Posts
    324
    Plugin Contributions
    0

    Default Re: Editable Home Page Centerboxes

    Thank you, yes that was the problem.

    LadyDee

  7. #17
    Join Date
    Jul 2007
    Posts
    324
    Plugin Contributions
    0

    Default Re: Editable Home Page Centerboxes

    Could you please tell me how to add three more boxes to the center? I would like to have 6 instead of three and I am not sure of everything tha has to be changed or added to.

    Thank you
    LadyDee

  8. #18
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Editable Home Page Centerboxes

    of
    Quote Originally Posted by deemurphy View Post
    Could you please tell me how to add three more boxes to the center? I would like to have 6 instead of three and I am not sure of everything tha has to be changed or added to.

    Thank you
    LadyDee
    It's a fair amount of work which requires cloning the sideboxes, and then setting up the stylesheet to show two rows of three boxes in the same tableless style as the existing module uses... (IMO the discussion how to execute this might be a bit off topic for this thread..)

    Bottomline is that what you are asking for is not a quick thing to do.. For me it would require DOING the work just to SHOW/EXPLAIN to you how to do it.. Work, clients, and family commitments have me pretty busy right now.. I'm afraid that I can't commit the time to volunteer doing work like this right now..

    Sorry that's probably not the answer you wanted to hear..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #19
    Join Date
    Jul 2007
    Posts
    324
    Plugin Contributions
    0

    Default Re: Editable Home Page Centerboxes

    No it is not, however I appreciate the fact that you responded to me to let me know that it was not as easy as I thought. I was thinking I could just copy some files and rename them.

    LadyDee

  10. #20
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Editable Home Page Centerboxes

    **deleted**
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 2 of 35 FirstFirst 123412 ... LastLast

Similar Threads

  1. v154 Editable Invoices & Packing Slips [Support]
    By dbltoe in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Oct 2015, 11:44 PM
  2. Admin-Editable Sidebox - Support Thread
    By kuroi in forum Addon Sideboxes
    Replies: 331
    Last Post: 29 Oct 2014, 04:15 AM
  3. Move Define Page Text to bottom of page, below centerboxes
    By AirsoftOutfitter in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Jul 2011, 02:13 AM
  4. Editable Home Page Centerboxes click-able links
    By colhemm in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 22 Feb 2011, 09:04 PM
  5. Image above centerboxes on main page
    By direwolf in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 21 May 2008, 06:40 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