- This topic has 3 replies, 2 voices, and was last updated 6 years, 1 month ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Aspire Theme Support › How To Center 3 Price Plans Instead of 4?
Tagged: aspire pro
What am I changing in style.css under #Plans to change it so the plans will center and I can use only 3 instead of 4?
Presently, they’re set to float left.
If you want 3 plans, look in your CSS for .plan
and change the width from 25% to around 33% –
.plan {
background: #fff;
border: 1px solid #ddd;
color: #333;
float: left;
padding: 60px 20px;
width: 33%;
}
Thank you. That worked. I’d actually done that previously and it wasn’t “working”. I now realize that Chrome was simply caching it and it wasn’t what was actually live.
Yeah I have to click the Reload button in Chrome anytime I make CSS changes so it instantly clears the cache.
Let us know if you run into any other issues.