Greetings! I am currently facing an issue with aligning the Pricing Table in the center. Initially, there were three tables displayed, but I decided to remove one of them, leaving only two tables. However, even after removing one table, the alignment did not shift accordingly. To illustrate the desired position of the table and provide insight into the code, I have attached a screenshot below:
Click here to view the screenshot
HTML CODE
<div class="section-title">
<h2>Unlimited courses and projects on all paid plans</h2>
...
(HTML code continues)
</div>
</div>
CSS CODE
.pricing .box {
padding: 500px 20px;
text-align: center;
border-radius: 8px;
position: inherit;
overflow: hidden;
background: #fefefe;
box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
...
(CSS code continues)
Please refer to the screenshot for visual clarity regarding the desired change.
Thank you!