N
Nick Hartley
I am in the process of updating old asp projects into asp.net.
We used to have radiobuttons which had an attached css class as
follows:
<label for="q2a1">High<input id = "q2a1" class = "radio" type="radio"
name="q2a" value="1"></label>
with the corresponding css class:
..radio {height:40px;width:40px;};
This made the radio button bigger - handy because the applications we
make tend to be used by older / partially sighted people.
I am now trying to recreate this effect using radiobuttonlist in
asp.net. If I attach the same css class to the new radiobuttonlist, it
has a different effect - it makes the label for each of the items 40px
by 40px and keeps the radio button the same size (which has the effect
of making everything less easy to view).
I can't change the cssclass of the individual items - the property is
read only.
Anyone any ideas?
Much appreciated,
Nick Hartley
We used to have radiobuttons which had an attached css class as
follows:
<label for="q2a1">High<input id = "q2a1" class = "radio" type="radio"
name="q2a" value="1"></label>
with the corresponding css class:
..radio {height:40px;width:40px;};
This made the radio button bigger - handy because the applications we
make tend to be used by older / partially sighted people.
I am now trying to recreate this effect using radiobuttonlist in
asp.net. If I attach the same css class to the new radiobuttonlist, it
has a different effect - it makes the label for each of the items 40px
by 40px and keeps the radio button the same size (which has the effect
of making everything less easy to view).
I can't change the cssclass of the individual items - the property is
read only.
Anyone any ideas?
Much appreciated,
Nick Hartley