Tagged: ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #580467

    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

    • This topic was modified 8 years, 9 months ago by Davide.
    #580833

    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

    #580986

    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

    #581182

    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

    #581231

    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

    #582885

    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

    #584177

    Hi Ismael,
    YES! That worked.

    Thank you! :)

    Davide

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Moving the av-catalogue-price to the left’ is closed to new replies.