How do I middle align and left align this text to the image in the button?
I know I can use HTML code, but what does that code look like?
Firstly, left align all text to the image?
And then how do I center align the text to the image?

How do I middle align and left align this text to the image in the button?
I know I can use HTML code, but what does that code look like?
Firstly, left align all text to the image?
And then how do I center align the text to the image?

Best answer by ArunDubey
See there are two ways.
<table style="width: 100%">
<tr>
<td style="width: 30%"> <img src="image URL" alt="xyz" style="width:100%"></td>
<td style="width: 70%">Description of image</td>
</tr>
</table><html>
<head>
<style>
* {
box-sizing: border-box;
}
.tr::after {
content: "";
clear: both;
display: table;
}
</style>
</head>
<body>
<div class="tr">
<div id="x1" style="float: left; width: 30%; padding: 2px;">
<img src="image URL" alt="xyz" style="width:100%">
</div>
<div id="x2" style="float: left; width: 70%; padding: 2px;">
Description of image
</div>
</div>
</body>
</html>
Already have an account? Login
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join. No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join. No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.