Area Link Admin

Many Home Pages have an area of their page for links to main areas of their site.  Area links have the following basic formatting applied within Dynamic HomePage which can be extensively configured within your stylesheet.

Emboldened Title (hyperlinked)
Newline followed by paragraph of explanatory text

An image may also be added (see Technical Details below).

Setting the Area Links
 

  1. As a logged-in admin user, click the Home Page Admin link from the Home Page, and choose the Area Link Admin option.

  2. Output this function to users' browsers can be turned on and off.

  3. A column of icons down the right-hand side of the page allow you to add, delete, edit or re-order area links.  (Bear in mind that the effect of your changes may vary according to your stylesheet settings.)

  4. Area links can be previewed before committing any changes you have made.  

  5. To confirm any changes you have made, click Update.  (Clicking the Home Page or Home Page Admin links will also confirm your changes.)  To cancel any changes you have made since the last update, click the Cancel Changes link.

Technical Details

These technical details are intended for web designers when setting up a stylesheet.

The sample HTML output below shows how Area links are output.  If customised output is required for your home page implementation, please contact the developers.

HTML Output
 

<!--Area links-->

<div id="activities">

 

    <div class="activity" id="act_1">

        <a href="1st_link_url" title="activity"><div class="act_img" id="act_img_1"></div></a>

        <span class="act_text" id="act_text_1"><b><a href="1st_link_url">1st Link Title</a></b>

            <br>1st Link Paragraph</span>

    </div>

 

    <div class="activity" id="act_2">

        <a href="2nd_link_url" title="activity"><div class="act_img" id="act_img_1"></div></a>

        <span class="act_text" id="act_text_1"><b><a href="2nd_link_url">2nd Link Title</a></b>

            <br>2nd Link Paragraph</span>

    </div>

 

</div>

<!--Area links end-->

Sample Stylesheet Implementation

The stylesheet is individual to each implementation.  The code below is just an illustration of how it may be implemented.

div.activity {

    font-size: 19px;

    border: none;

    padding: 2px 2px;

    margin: 2px;

    background-color: transparent;

    width: 250px;

    }

 

#act_1, #act_2 {

    position: absolute;

    right: 2px;

    z-index: 1;

    }

 

#act_1 {

    top: 100px;

    }

 

#act_2 {

    top: 150px;

    }

 

.act_img {

    margin: 2px;

    float: left;

    width: 40px;

    height: 40px;

    border: 1px solid #000;

    }

 

#act_img_1 {

    background-image: url(../images/ico_area1.jpg);

    }

 

#act_img_2 {

    background-image: url(../images/ico_area2.jpg);

    }