How to make the corner of entry field rounded

Hi,

Is it possible to make the corner of Entry field rounded.

I used the CSS but It didn't work for me.

undefined

.myclass{

border-radius: 25px;

}

undefined

#entry732{

border-radius: 25px;

}

undefined

Thanks,

Discussion (2)

The html name is always the id of the DIV the element is in. Your CSS is working alright if you use the id of the entry field, wich is html name + "id":

undefined

#entry732id{

border-radius: 25px;

}

undefined

.yourClass input{

border-radius: 25px;

}

undefined

Tim

You might find this useful: http://trivantis.com/blog/style-entry-fields-lectora-using-css/

Discussions have been disabled for this post