SmartFAQ is developed by The SmartFactory (https://www.smartfactory.ca), a division of InBox Solutions (https://www.inboxsolutions.net)

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.


The comments are owned by the author. We aren't responsible for their content.
user

 Addition


As noted in the forum post related to this,if you add the following to your style.css etc
Quote:


fieldset {
border: 0px solid #fff;
}

It will remove the line. Specifying a line thickness and color will change the color accordingly.

 


Login

Who's Online

129 user(s) are online (2 user(s) are browsing XOOPS FAQ)


Members: 0


Guests: 129


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Did you know ?

If the mysql extension is not loaded properly, you will get a "Fatal error: mysql extension not loaded" error

Random question

How do I change file/folder permissions since my server has upgraded to phpsuexec?