Hi There,
1.) This issue might happen because of incorrect html tags. You might have tags that is not close properly. I have checked your content thoroughly and I found this:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
}
/* Create two columns left for price, right for terms that floats next to each other */
.column1 {
float: left;
width: 42%;
padding: 0px;
height: 120px;
}
.column2 {
float: left;
width: 58%;
padding: 3.5em 0em 0em 0em;
height: 120px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
.column {
width: 100%;
}
}
/* Content */
</style>
</head>
<body>
<div class="row">
<div class="column1" style="font-size:5.4em;">
<p> $99 </p>
</div>
<div class="row">
<div class="column2" style="font-size:1em;">
<p>Per Month <br /> No annual commitment</p>
</div>
</div>
</body>
</html>
No need to add the entire HTML content. The page is already a complete html setup. What you need to add only on that specific text element, is this part:
<div class="row">
<div class="column1" style="font-size:5.4em;">
<p> $99 </p>
</div>
</div> <!-- this closing div is missing causing the issue -->
<div class="row">
<div class="column2" style="font-size:1em;">
<p>Per Month <br /> No annual commitment</p>
</div>
</div>
Add the following custom CSS on page content CSS not on the text element.
/* Create two columns left for price, right for terms that floats next to each other */
.column1 {
float: left;
width: 42%;
padding: 0px;
height: 120px;
}
.column2 {
float: left;
width: 58%;
padding: 3.5em 0em 0em 0em;
height: 120px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
.column {
width: 100%;
}
}
From you custom CSS also remove the following from the start and end part:
<style>
</style>
No need for those style tags because it was added automatically when parsing CSS.
Do the same for content $159 on the next column.
Let’s fixed that major main structure issue first before going to the next.
Hope this helps.