But I´m too dumb to solve it  I´ll translate from Swedish.
I am trying to format Times New Roman in a Div section (not sure it is a Div) but don´t know the right css code. This is part of the css code:
#middle{
padding:10px;
font-size:1.2em;
margin-bottom:10px;
border:2px dashed #999999;
}
In there there is a div section that in this case is a <p> in the HTML, in that <p> section by using css I want to change the font to Times New Roman.
I´ve tried this but it doesn´t work except for the margin part, that works:
div#middle p{
margin-bottom: 20px;
font-family:"Times New Roman";
}
Hope you understand what I mean.
Thanx!
|