Changing border of a radio Button in Cognos -
how change or make border disappear of radio buttons in cognos? trying give padding between text in radio button , border. tried adding table border still radio buttons border persists , looks ugly.
you can use css:
<style> .clscheckboxlist { border: none; } </style>
put in html item on prompt page , radio buttons no longer have borders.
if want target specific radio button prompt while not affecting others, wrap span , give span id.
add html item following contents right before prompt:
<span id="myradiobutton">
add second html item following contents right after prompt:
</span>
modify css use span's id isolate radio button group desired:
<style> #myradiobutton .clscheckboxlist { border: none; } </style>
Comments
Post a Comment