Click here to Skip to main content
15,896,269 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how do i make my comment box for main index page to load with a different font size from all other pages. the css file is the same for all the pages. the database is the same too!
i.e
comment_text {
font-family: arial;
font-size: 1.0em;
}

Thank you!
Posted
Comments
Sergey Alexandrovich Kryukov 21-Mar-14 16:57pm    
Not clear...
—SA

1 solution

add below code for body style

CSS
body{
     font-family:Verdana, Geneva, sans-serif;
     font-size:0.8em;
}

<pre lang="css">comment_text {
     font-family: arial;
     font-size: 1.0em;
     color:#f00;
}


Try this one and let me know if you need more help from me.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900