Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • oscar_nz Friend
    #139758

    I’m wanting to place the heading “Featured Projects” at the top of my home page, exaclty as “Featured Products” is highlited in blue on the demo zeolite website.

    I have setup my home page as a Front Page Blog Layout, and cant see where to “show title”

    In menus > main menus > home > parameters (system) I can select radio button show page title and use page class suffix _hilite but it doesnt work.

    Help please! 🙂

    Css Magician Friend
    #299182

    Hi oscar_nz,

    Step 1 : templatesja_zeolitehtmlcom_contentfrontpagedefault.php line 12, change code :
    [PHP]
    <?php if ($this->params->get(‘show_page_title’)) : ?>
    <h1 class=”componentheading<?php echo $this->params->get(‘pageclass_sfx’) ?>”>
    <?php echo $this->params->get(‘page_title’); ?>
    </h1>
    <?php endif; ?>
    [/PHP]
    to
    [PHP]
    <?php if ($this->params->get(‘show_page_title’)) : ?>
    <h1 class=”componentheading<?php echo $this->params->get(‘pageclass_sfx’) ?>”>
    <span><?php echo $this->params->get(‘page_title’); ?></span>
    </h1>
    <?php endif; ?>
    [/PHP]

    Step 2: in templatesja_zeolitecsstempate.css add styles :


    .componentheading_hilite {
    background:#04A504 url(../images/h3-r-hilite.gif) no-repeat right center;
    color:#FFFFFF;
    font-size:125%;
    font-weight:bold;
    height:29px;
    line-height:29px;
    margin:-8px -8px 10px;
    padding:0;
    }

    .componentheading_hilite span {
    background: url(../images/h3-l-hilite.gif) no-repeat left center;
    display:block;
    height:29px;
    padding-left:28px;
    }

    Good luck,

    oscar_nz Friend
    #299189

    awesome, thank you!

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 2 voices, and was last updated by  oscar_nz 15 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum