I used following code in js file for toast message
I want small font-size in toast message.
I tried using text-size and font-size But it not working.
Is there any solution for change size for toast message???
var toast = function(msg){
$(""+msg+"")
.css({ display: "block",
opacity: 0.90,
position: "fixed",
padding: "7px",
"text-align": "center",
width:"270px",
left: ($(window).width() - 284)/2,
top: $(window).height()/2 })
.appendTo( $.mobile.pageContainer ).delay( 2500 )
.fadeOut( 100, function(){
$(this).remove();
});
};