Within my h1
, I have incorporated 2 FontAwesome quote icons. To adjust their positioning, I utilized CSS due to the lack of a simpler method. However, I am facing challenges with responsiveness on various screen sizes, leading me to resort to media queries. Is there a more efficient way to achieve this?
.fa-quote-left {
position: relative;
left: -20px;
top: 15px;
color: #34a7c1;
}
.fa-quote-right {
position: relative;
right: -95px;
top: -17px;
color: #34a7c1;
}
Feel free to view the JSFiddle here