How do I remove/change color of the line that goes around the block and ends up at the either side of the legend.blockTitle

Requested and Answered by Carnuke on 2004/12/20 20:03:35

How do I remove/change color of the line that goes around the block and ends up at the either side of the legend.blockTitle

The border is caused by the fieldset in each template page in your theme. You can change them like this: use an inline style in your theme templates like this:

<fieldset style="border: 0px;"template content </fieldset>
Or you could add this to style.css
fieldset.custom {
border0px solid #fff;
}
Then in your templates change them to this:
<fieldset class="custom"template content </fieldset>
you could also use the above to customize your fieldset so it is diff from default. as a rule, try not to use inline styling. In order to see the changes, Don't forget to set your templates to update in sytem admin. You may also have to delete files in templates_c folder AND your browser's cache.

This Q&A was found on XOOPS Web Application System : https://xoops.org/modules/smartfaq/faq.php?faqid=324