Text Image
I'm having trouble aligning the text in the center and the image on the right using Bootstrap. Here's my HTML code:
<div class="english-Box">
<h1 class="text-center color-English">English</h1>
<img class="eng-Img" src="images/abc.png"></img>
</div>
And here's my CSS code:
.eng-Img {
float: left;
}
.color-English {
padding-top: 14px;
color: #7952b3;
font-family: 'PT Sans', sans-serif;
font-size: 25px !important;
letter-spacing: 2px;
}
.english-Box {
border-radius: 5px;
border: 1px solid #7952b3;
height: 60px;
width: 20%;
display: block;
margin: 0 auto 80px auto !important;
float: none;
}