How can you make text bigger or the text inside the div ?
i really dont know, help me out guys
something like:
$('div.text'), { FontSize: '40px' }); // <--- this is not real code, just to show what i need
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In jQuery, the way you would do this would be to change the CSS for the div. Here is a quick an dirty demo: http://jsfiddle.net/wjAqm/
The actual code is
$("#demo").css("font-size", "20px");