Page 1 of 1

The border around the contact form?!

Posted: Wed Aug 30, 2006 8:36 pm
by Terabyte
Hello,

How to remove the gray border around the contact form, please??

I just can't find it!!!

Re: The border around the contact form?!

Posted: Fri Sep 01, 2006 5:41 am
by Terabyte
Common, somebody  ???

Have seen the showcases and people don't have the border .... I can't get rid of it.....

Re: The border around the contact form?!

Posted: Fri Sep 01, 2006 7:19 am
by tsw
url

Re: The border around the contact form?!

Posted: Fri Sep 01, 2006 8:43 am
by cyberman
Have your compare the sources (XHTML, CSS - yours and someone in showcase)?

Re: The border around the contact form?!

Posted: Fri Sep 01, 2006 11:39 am
by Terabyte
Yes I have look on the CSS and can't fins a thing.....

http://www.lanta.se/index.php?page=kontakta_oss

Re: The border around the contact form?!

Posted: Fri Sep 01, 2006 11:58 am
by Der Rudi
The border you see is coming from the tag. Either remove this tag completely or put something like this

Code: Select all

fieldset{
border:0;
}
in the css. Can also be done as an inline style if you prefer.

Re: The border around the contact form?!

Posted: Fri Sep 01, 2006 5:41 pm
by Terabyte
I feel bad, that it was so easy. I have no experience with fieldset tag and didn't know that the border is there as default. THANKS!

Re: The border around the contact form?!

Posted: Sun Nov 26, 2006 4:05 pm
by afri-can
Where does the contact form sit, what file do I find the code to change ???

Re: The border around the contact form?!

Posted: Mon Nov 27, 2006 8:26 am
by cyberman
/plugins/function.contact_form.php

Re: The border around the contact form?!

Posted: Mon Nov 27, 2006 5:14 pm
by afri-can
found another sollution instead of tampering with the soure
I put the contact form in a div and gave it some contra styles

Code: Select all

<style type="text/css">
<!--
div#contactform {
	font-family: Arial, Helvetica, sans-serif;
}
div#contactform legend {
	display: none;
}
div#contactform label {
	margin-bottom: 10px;
}
div#contactform fieldset{
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
-->
</style>
Thanks for your help