Created two custom classes with the aim of achieving the below result:
My CSS:
.custom_ccy_pricing {
font-size:20px;
top:-35px;
position:relative;
color:grey;
}
.custom_pricing {
font-size:80px;
font-family: ‘Raleway’;
float:right;
color: #7ebec5;
font-weight:300;
}
My html:
<div class="custom_ccy_pricing">$
<div class="custom_pricing">50</div>
</div>
No matter what, I can't seem to achieve the above - wordpress automatically assigns <p> to the text, as seen below (and what I end up with):
Result:

Thanks!
.custom_ccy_pricing p { display: none; }<div>; how about a<span>instead, like<div class="custom_ccy_pricing">$<span class="custom_pricing">50</span></div>, all on one line?divis a block element, so thepis inserted automatically (I think), you should set thedisplay:inline-blockfor thedivor usespanas suggested by yitwail