Shape 5

Joomla Templates => Callie Rush - Club => : rtringo February 16, 2012, 09:02:23 PM



: fieldset
: rtringo February 16, 2012, 09:02:23 PM
I am using "fieldset" to create an information box in an article.
In template.css I inserted

fieldset  {
  background-color: #e8f5ff; 
  border: 1px solid #5F5F5F;
  padding-left: 15px;
  padding-right: 15px;
  padding-top:7px;
  padding-bottom:7px;
  margin-left: 20px;
  margin-right: 20px;
           }

I have used this style in other templates and got the desired results. In this template a border is not created around the box. All the other formatting shows up.         What am I doing wrong?

http://practicalmeditation.net/index.php/helpful-information/what-is-esp-intuition (http://practicalmeditation.net/index.php/helpful-information/what-is-esp-intuition)


: Re: fieldset
: mikek February 17, 2012, 09:08:21 AM
Hello,

At line 99 of template.css it's told to not put a border on fieldsets, search for:

a img, fieldset, img


: Re: fieldset
: rtringo February 17, 2012, 09:08:27 PM
That was it........ I eliminated fieldset from

a img, fieldset, img  { border: none; }

and the border showed up fine.

Thanks for help