• Resolved erialc011

    (@erialc011)


    Hi is it possible to move/change the position of the price and the add to cart button?

Viewing 1 replies (of 1 total)
  • Plugin Author Bryan Focht

    (@bfocht)

    Yes you can use CSS to format and move the price and cart buttons.

    for example you can apply the follow css style change to move the price

    
    .rstore-pricing {
        position: relative;
        top: 65px;
        left: 65px;
    }
    

    and here is a style change to move the button

    
    .rstore-add-to-cart {
        position: relative;
        top: -15px;
        left: 200px;
    }
    

    Every site and theme is a little different so these are just meant as examples.
    Here is some more documentation about position https://developer.mozilla.org/en-US/docs/Web/CSS/position

    Also you may have to research your theme or page builder to determine how to modify the css on your site. You can also use a plugin like Scripts n Styles which will allow you to add CSS to your site.

Viewing 1 replies (of 1 total)
  • The topic ‘Move Price and Add to Cart’ is closed to new replies.