Web Services Blog

Create Panels and Borders with Color

Have you ever wanted to add some colorful elements to your web page text? Sure, you can just change the text color but what if you want to take it up a notch and really make your text stand out? Panels and borders can be used to draw attention to special or important content. Simply […]

Customize your lists

You need to create an ordered or unordered list and you are tired of seeing the same old list characters like the ones below. line one line two line three line one line two line three How can you customize your lists? Apply list styles like these: circle square lower alpha character upper alpha character […]

Home page feature – rotate image on refresh script

This is how to add rotating images to the feature area on your home page. Create a new text file and copy the content in red below into it. Save the file as rotateImageOnRefresh.js and upload it to Cascade. Place it in the same folder as your index page. <!– SET THE MAX FEATURE COUNT […]

Add inline PHP to your pages

Say you want the following code in the content area of your page: id = 300; echo $app-id; for($i=1; $i<=10; $i++){ echo “$i “; } ?> However, after you submit, the WYSIWYG converts the code to this: <?php echo “this is just a test”; $app->id = 300; echo $app-id; for($i=1; $i<=10; $i++){ echo “$i “; […]