Forum Moderators: not2easy
I have added a Zoodoka(sp?) newsletter function on the side bar. For some reason there is a little white bar (you can tell it is out of place) right above were you type your email.
Then a little white bar on were your click "submit".
How do I remove this or fix it.
[edited by: jatar_k at 1:09 am (utc) on Feb. 17, 2007]
[edit reason] no urls thanks [/edit]
One solution would be to set the background of the form to transparent or the same color as the container. The blocks wouldnt be visible then, but that doesnt get rid of them.
#right .column form {
background:#FFFFFF none repeat scroll 0%;
That is why you are seeing a white box.
In general, you should avoid applying presentational properties to the <form> element directly. Instead, wrap the contents of your form with a div and apply the style to that element instead. For example:
<form>
<div>
</div>
</form>
Hope that helps.
<link rel="stylesheet" type="text/css" href="styles.css">
where styles.css is the actual file containing the styles.
In that file, you have a style for:
#right .column form
This is specifying that the style will apply to all <form> elements that are contained within an element that has class="column" that are contained within an element that has id="right". The styles for that included this or something similar to this:
background:#FFFFFF none repeat scroll 0%;
That rule says the background of the previously mentioned form will be #FFFFFF (white), have no background image, repeat the background image if it did have one, etc., etc.... just remove this entire line.
Hope that helps.