Viewing 4 reply threads
You must be logged in to reply to this topic.
HI
it’s possible to put all the buttons in the price list at the same height?
In fact, in product that have less items, the button is upper than others…
for example here: https://2.225.102.67/rcmedici/polizza-infortuni/
if I edit the css box, all the button move.
Unfortunately nothing happens : here all my css code
/*#header{
margin: 0 auto;
}*/
.codeless_slider .swiper-slide .content h1 {width: 600px;}
.btn-bt.default {
color: #ffffff;
background: rgba(124,197,249, 1);
border-color: rgba(229,145, 90, 1);
font-size: medium;
.price_table .list {
min-height: 136px !important;
}
}
And here the page: https://2.225.102.67/rcmedici/polizza-infortuni/
Did I make any mistake?
Hello,
Yes. The css code i gave you is independent. You have put it inside another block of code. Causing both of these block to not function anymore.
This is the correct form:
.codeless_slider .swiper-slide .content h1 {width: 600px;}
.btn-bt.default {
color: #ffffff;
background: rgba(124,197,249, 1);
border-color: rgba(229,145, 90, 1);
font-size: medium;
}
.price_table .list {
min-height: 136px !important;
}
Let us know.
Best regards!
You must be logged in to reply to this topic.