The border around the contact form?!
The border around the contact form?!
Hello,
How to remove the gray border around the contact form, please??
I just can't find it!!!
How to remove the gray border around the contact form, please??
I just can't find it!!!
Re: The border around the contact form?!
Common, somebody 
Have seen the showcases and people don't have the border .... I can't get rid of it.....

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?!
Have your compare the sources (XHTML, CSS - yours and someone in showcase)?
Re: The border around the contact form?!
Yes I have look on the CSS and can't fins a thing.....
http://www.lanta.se/index.php?page=kontakta_oss
http://www.lanta.se/index.php?page=kontakta_oss
Re: The border around the contact form?!
The border you see is coming from the tag. Either remove this tag completely or put something like this
in the css. Can also be done as an inline style if you prefer.
Code: Select all
fieldset{
border:0;
}
Re: The border around the contact form?!
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?!
Where does the contact form sit, what file do I find the code to change 

Re: The border around the contact form?!
found another sollution instead of tampering with the soure
I put the contact form in a div and gave it some contra styles
Thanks for your help
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>