Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    May 2005
    Posts
    139
    Plugin Contributions
    0

    Default EZ-Pages CSS Content settings

    Hello,

    Can anyone please tell me which style in the CSS controls the text in the EZ-Pages content pages? It displays differently to the standard zen pages.

    I have been searching through and playing around with it but can't find which styles control it.

    Thanks in advance...

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

    Default Re: EZ-Pages CSS Content settings

    Can anyone please tell me which style in the CSS controls the text in the EZ-Pages content pages? It displays differently to the standard zen pages.
    What are you using as an editor?? Ezpages???? is everywhere in the stylesheet.css file.

    Many are combined with others i.e.: #navBreadCrumb, #navEZPagesTop and many others but you can spearate any of these and make it an entry on its' own if you need to.

  3. #3
    Join Date
    May 2005
    Posts
    139
    Plugin Contributions
    0

    Default Re: EZ-Pages CSS Content settings

    Hello Kobra, thanks for your reply.

    I am using zencart admin section to create the content for it. I know EZPages is everywhere through the stylesheet, but everywhere I added the style (even on the combined ones) for text-align it did not change the css style on the live version.

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

    Default Re: EZ-Pages CSS Content settings

    Get FireFox and the web dev tools and you can edit the css live and see exactly what the changes do in a wysiwyg fashion.

  5. #5
    Join Date
    Oct 2005
    Location
    Qld Australia
    Posts
    156
    Plugin Contributions
    1

    Default Re: EZ-Pages CSS Content settings

    Hi Quantum,
    When I added data to my ezpages, what i did was create a set of new CSS conditions which only effected EZpages. I added those to the bottom of my stylesheet.
    IE
    .style2 {
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: left;
    font-weight: bold;
    }
    .style5 {
    color: #FF6600;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: left;
    }
    .style3 {
    color: #009933;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: left;
    font-weight: bold;
    }
    .style6 {
    color: #FF6600;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: left;
    }
    .style7 {
    color: #009933;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: left;
    }
    .style8 {
    color: #FF0000;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: left;
    }
    .style4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #333333;
    text-align: left;
    font-weight: normal;
    letter-spacing: 3px;
    }
    This made it very easy to play withEZpages
    Gerard

  6. #6
    Join Date
    May 2005
    Posts
    139
    Plugin Contributions
    0

    Default Re: EZ-Pages CSS Content settings

    Hey Gerard,

    Thanks for that!

    Where will I find the ez-pages content page in the directory sturcture to link to the new styes? I managed to locate the tpl_ezpages_bar_header.php, and ezpages_bar_footer.php, but that was it.

  7. #7
    Join Date
    Oct 2005
    Location
    Qld Australia
    Posts
    156
    Plugin Contributions
    1

    Default Re: EZ-Pages CSS Content settings

    All I did in the admin section under EZpages was add what I wanted in an HTML format. I used Dreamweaver (or whatever html tool you use) to create my page ( and view it). Then I copy and pasted it into EZpages incorporating the styles that I added into CSS. I didnt have to touch any php pages.
    ie
    div align="justify">
    <br><br>
    <span class="style1"> The </span><span class="style2">Advanced Bowen Technique</span><span class="style1"> works
    by correcting imbalances of chi energy (as described in the Eastern tradition
    of healing) and gentle muscular and soft tissue releases. The gentle yet
    powerful Bowen moves
    Check out my web page http://www.terralee.com and go to IMPORTANT LINKS to see it in action. Hope this helps.

    Gerard

  8. #8
    Join Date
    May 2005
    Posts
    139
    Plugin Contributions
    0

    Default Re: EZ-Pages CSS Content settings

    Thanks for that Gerard. Unfortunately I am building it for someone else, and want to have it setup so they can just go in and add the text and everything will format automatically on the site based on the css stylesheets.

  9. #9
    Join Date
    Oct 2005
    Location
    Qld Australia
    Posts
    156
    Plugin Contributions
    1

    Default Re: EZ-Pages CSS Content settings

    That does pose a problem . Does your client want just one type of font, width, colour etc etc on the page. If so then Kobra's comment
    Get FireFox and the web dev tools and you can edit the css live and see exactly what the changes do in a wysiwyg fashion
    will help you sort it out. You might have to define some extra parameters for ezpage, but at least your cient can just drop it in .

    Gerard

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

    Default Re: EZ-Pages CSS Content settings

    Just a couple of examples for the stylesheet.css:
    Take this:
    Code:
    #cartBoxListWrapper ul, #ezPageBoxList ul {
    	list-style-type: none;
    	}
    
    #cartBoxListWrapper li, #ezPageBoxList li, .cartBoxTotal {
    	margin: 0;
    	padding: 0.2em 0em;
    	}
    Make it this:
    Code:
    #cartBoxListWrapper ul  {
    	list-style-type: none;
    	}
    
    #ezPageBoxList ul {
    	list-style-type: none;
            border: ?????;
    	}
    
    #cartBoxListWrapper li, .cartBoxTotal {
    	margin: 0;
    	padding: 0.2em 0em;
    	}
    #ezPageBoxList li {
    	font:  ????
            font-size: ?????
            margin: 0;
    	padding: 0.2em 0em;
    	}
    As stated, there are many settings for ezpages. You only need to separate the ones where the changes that you want to make/add are in conflict with the settings of the other items.
    Item additions in red are just for illustration, these can and should be the ones that you will require and can be any that css allows.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 5
    Last Post: 1 Sep 2010, 06:20 PM
  2. Default CSS Optmization - How do I change CSS File name in header of all pages?
    By Beama in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 7 Oct 2009, 09:50 PM
  3. How to make EZ-pages Internal Link to html pages open in main content area?
    By jamesdavid in forum Customization from the Admin
    Replies: 0
    Last Post: 4 Jun 2008, 04:52 PM
  4. Define Pages Settings
    By kaylala in forum General Questions
    Replies: 8
    Last Post: 29 Oct 2007, 07:56 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