Support Portal
Language
 
User Login
Username
Password
 
 Login
Information
Article ID332
Created On7/16/2010
Modified7/16/2010
Share With Others

Customising Designs using CSS

The main Sections of a site are the date search, special offers, events, newsletter subscription and the side column content. You can remove these from a website by entering some css into the "Custom CSS" snippet.

The following code can be used to prevent each item from being shown on the site. Remove the appropriate lines in the code to show that section on the site.

<style type="text/css">
  
.bookonline-box {display:none;}
.specialoffers-box {display:none;}
.upcoming-events-box {display:none;}
.join-newsletter-box {display:none;}
.side-column-footer-box {display:none;}
  
</style>