Webulator: Build your own website without any special software or know-how!

Recent articles

  • Adding content to and removing content from the left and right columns

    The [AddContent:] and [ClearContent:] tags can be used to add content to and remove content from the left and right columns of your web pages.
  • Embedded Summaries

    The [Summary:] tag allows you to insert the title and summary from another article into a page.
  • Copying articles

    Logged in users with moderator permissions are able to copy articles in the content management system
  • Quick Links

    The [QuickLinks:] tag allows you to insert a titled box containing a list of links into an article.
  • Accordion

    An accordion or concertina style interface can be created using the [Accordion:] tag.
  • Slideshows of all the images in another article

    The [ArticleImagesSlideShow:] tag allows you to generate an slideshow of all the images (except for the summary image) contained in another article.
  • Example page containing images for a slideshow

    The images on this page are used in article
  • Tab Menus

    The [TabMenu:] tag allows you to insert a tab style menu into a page to allow navigation within a subsection of the site.
  • iCalendar Files

    Calendar events are traditionally shared using iCalendar (.ics) files. These are often attached to event invitation emails and are widely used across calendaring applications.
  • Redirecting to other pages

    Webulator allows a page to automatically redirect to another page using [Redirect:] command
RSS Feed of this page

How to change colours in the Forthcoming events and Recent articles boxes

There are no options to change colours for the Forthcoming events and Recent articles boxes on the Site Admin page so if you want to do this you need to customise your Webulator website's cascading style sheet.

Add the following text to the Additional CSS data field on the Site Admin page:

div.latest
{
 background-color: #ffd700;
}

div.latest a, div.latest a:visited
{
 color: #000080;
}

div.latest a:hover
{
 color: #ff0000;
}

In this case the background colour is being set to gold (#ffd700) and the foreground colour to navy blue (#000080) but you can obviously set it to any colour you wish.

Note also that in the above example, the visited link colour is set to be the same as an unvisited link and the hover colour is set to red (#ff0000)

How to change colours in the Forthcoming events and Recent articles boxes

There are no options to change colours for the Forthcoming events and Recent articles boxes on the Site Admin page so if you want to do this you need to customise your Webulator website's cascading style sheet.