Hi guys,
is there a way to move the av-catalogue-price column to the left and make it the first column of the catalogue?
Something like:
CATALOGUE PRICE | CATALOGUE TITLE
…………………………….| CATALOGUE CONTENT
thanks!
Davide
Hey Davide,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi Rikard,
I’m working on the single page layout, by following the private link below you will see the catalogue “table”. I’d like the price column to be the first one on the left, not the last one on the right. Is there a way to make that possible?
thank you!
Davide
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-catalogue-price {
float: left!important;
text-align: left!important;
right: auto;
top: -15px;
}
.av-catalogue-title-container {
margin-top: 15px;
}
Cheers!
Yigit
Hi Ygit,
thank you very much for your reply… by adding that code, the price column does actually move to the left – which is correct!, but all the rest (catalogue title and catalogue content) just goes under it, instead of moving to the right. I just would like to exchange positions between price column and title+content: Price on the left, the rest on the right :)
your help is very appreciated!
thanks!
Davide
Hi!
Please try this code instead:
.av-catalogue-price {
left: 0;
}
.av-catalogue-title {
padding-right: 0;
text-align: right;
}
.av-catalogue-content {
display: block;
float: right;
padding: 0;
}
Regards,
Ismael
Hi Ismael,
YES! That worked.
Thank you! :)
Davide