>>
Site Map
>>
Forums
>>
Themes 6x
Forum module - topics in forum:
Themes 6x - Discussions regarding PHP-Nuke Themes.
Modifying Radio Buttons
I was just wandering how I would go about modifying the radio buttons on my site/
I currently have a black border around them, which I do not like, and so would like to take if off, however I don't know what file to modify!
Thanks in advance
A link would be nice so we could get a better understanding what you are talking about... - I havent a clue what you mean....

K, the site is
www.ngcxtreme.com/html
If you look on the left hand side you will see the sites poll and the radio buttons (may not actually be called that - the little circles you click to make your decision before casting the vote!) have a black border around htem, it is that black border I want to remove
Find similar to
| Code: : |
/* Form elements */
input,textarea,select{
border-color:#000000;
color:#000000;
border:1px solid;
font:normal 11px Verdana,Arial,Helvetica,sans-serif} |
In the stylesheet and change the border colour to the same as you block background colour
Cheers dar!
Sorry but it's still not what I wanted!
When I change the border it gets rid of it on the actual button aswell, however I want it to be like this site..... the little circles next to the options have no border but the submit button does have border
Try changing border to 0px then.
I've tried that but it still changes the button border as well!
Try adding another entry in your stylesheet, find your equivilant:
| Code: : |
/* Form elements */
input,textarea,select{
border-color:#000000;
color:#000000;
border:1px solid;
font:normal 11px Verdana,Arial,Helvetica,sans-serif} |
Just add after that | Code: : |
input[type="radio"] { BORDER:0px; } |
Only problem with that code is that it is not 100% browser compatible, in fact even MS IE v5.5 doesnt support it but it should work for newer browsers
Cheers Dashe