I have this
<h1 id="coins"></h1>
But cant style it with css, when i use Jquery Mobile ?
.coins{
font-family: Verdana;
font-style: bold;
font-size: 50px;
color: #ecb502;
margin: 30px 30px 0px 0px;
}
have also tryed with h1{} and didnt help ?
anyone knows why ?
if you’re styling an id using a period ‘.’ then that’s your problem. Style ids with a hash ‘#’ and classes with a period ‘.’
Also, you would use font-weight: bold instead of font-style. font-style would be for italicizing, primarily.
And, although it is more of a preference thing, as an FYI you don’t need to specify units for the values of 0 on your margin. Zero times anything is still zero, doesn’t matter what it is.