|
Table Of Contents
|
RADFaq - StylesYou can customise the RADFaq Component by using the in-built styles functionality. Styles are folders containing all the CSS, Images and Icons required to build up the component interface. To create your own, simply copy the DEFAULT folder found in the dccom/components/radFaq/styles/ directory and give the folder a new name, i.e: MYSTYLE This folder contains folders and files that make up each styles. From here, you can edit the CSS and images and call your own style using the following code: <cf_dccom component="radFaq" style="MYSTYLE" .................></cf_dccom> The default style is loaded automatically if the STYLE attribute is not passed into the component. Start Text - Using Generated ContentWhen the RADFaq component loads first and the main parent categories are loaded, you can display text at the top of the page. This text is called the generatedContent. To load generated content into the component, simply place your formatted HTML in-between the starting and closing CF_DCCOM tags as follows: <cf_dccom component="radFaq" datasource="myDatasource" username="myUsername" password="myPassword"> This is some text I would like to appear on the main page of the RADFaq Component. </cf_dccom> |