Spell Check In wysiwyg
12 posts by 2 authors in: Forums > CMS Builder
Last Post: January 17, 2008 (RSS)
By grauchut - January 3, 2008 - edited: January 3, 2008
Can you also change the font color for the title and date.
Here is the link.
http://www.palmyrafire.com/newsList.php
Re: [grauchut] Spell Check In wysiwyg
By Dave - January 4, 2008
>Is there a way to add spell check to the wysiwyg on cms builder.
There's no spellcheck for the wysiwyg, I'll add that to the feature request list for you and do some research on it.
>Also it is not showing my pictures on the news page but if you click the link for more info it shows them there.
Pictures (uploads) aren't displayed on the list page by default but you can use the same code from the "Page Viewer". Just copy the block called "STEP3: Display Uploads" into your "List Viewer" where your other record fields are.
>However it just shows thumbnails and you can't click on them to enlarge.
You can copy and paste some of the tags around to add links to the images. Try adding this around the <img ... > tags:
<a href="<?php echo $upload['urlPath'] ?>"><img ... ></a>
>Can you also change the font color for the title and date.
The way to do that in classic HTML would be to surround whatever you want to change with <font> tags, like this:
<font color="red"><?php echo $record['title'] ?></font>
Hope that helps! :)
interactivetools.com
Re: [Dave] Spell Check In wysiwyg
By grauchut - January 4, 2008
Re: [grauchut] Spell Check In wysiwyg
By Dave - January 4, 2008
<a href="<?php echo $upload['urlPath'] ?>" target="_blank"><img ... ></a>
interactivetools.com
Re: [Dave] Spell Check In wysiwyg
By grauchut - January 4, 2008 - edited: January 4, 2008
Also is it possible to have the images on in a pop up window within the same page. Thanks again. Glenn
Re: [grauchut] Spell Check In wysiwyg
By Dave - January 4, 2008
The field editor lets you define up to 5 extra "info" fields for uploads with "title" and "caption" setup by default. So if you have those default settings you can display the caption like this (just paste this somewhere in the "show uploads" code block).
<?php echo $upload['info2'] ?>
>Also is it possible to have the images on in a pop up window within the same page.
I think what you want is something like lightbox2. It's a free script that we use on our own website that shows the images "on top" of the page. There is a demo, free download, and install instructions here: http://www.huddletogether.com/projects/lightbox2/
Let me know if you get stuck with it and I'll try to give you a hand.
interactivetools.com
Re: [Dave] Spell Check In wysiwyg
By grauchut - January 4, 2008
Re: [grauchut] Spell Check In wysiwyg
By Dave - January 4, 2008
Hope that makes sense.
interactivetools.com
Re: [grauchut] Spell Check In wysiwyg
By Dave - January 4, 2008
<img ... ><br/>
<?php echo $upload['info2'] ?>
interactivetools.com
Re: [Dave] Spell Check In wysiwyg
By grauchut - January 5, 2008 - edited: January 5, 2008
http://www.palmyrafire.com/indextest.php
Thanks again for you great support. Glenn
Nevermind I got it to work.