Web Content Admin

A Web Content list is a type of type of link list which groups any number of links under a single heading.  It is particularly well suited for listing related sites or subject links.

Configuring web content links
 

  1. As a logged-in admin user, click the Home Page Admin link from the Home Page, and choose the Web Content Admin option.  (Note: if the name of Web Content links has been changed in the function admin settings, the Admin menu will display the modified name.)

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

  3. The "Name" of the function (default being Web Content) can be changed.  The name entered here will be used on the Admin menu to refer to the Web Content links function.

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

  5. Web Content links can be previewed before committing any changes you have made.  

  6. 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 Web Content links are output.  If customised output is required for your home page implementation, please contact the developers.

HTML Output
 

<!-- Webcontent Part-->

<div id="web_content">

    <table width="100%">

       <tr>

           <td class="h2"><div class="h2" id="web_head">Web Content</div></td>

           <td class="italic">&nbsp;</td>

       </tr>

    </table>

    <div id="extras">

        <a href="http://www.mysite.com">My Site</a><br>

        <a href="http://www.hissite.com">His Site</a><br>

        <a href="http://www.hersite.com">Her Site</a><br>

        <a href=""></a><br>

    </div>

</div>

<!-- Webcontent Part end-->

Sample Stylesheet Implementation

#web_content {

    position: absolute;

    top: 493px;

    right: 285px;

    width: 180px;

    height: 103px;

    border: 1px #999 solid;

    background-color: #ffc;

    overflow: auto;

    z-index: 1;

    }