colegiovictoria Project Leader De Costa Rica Membro desde out 2020 colegiovictoria 19 jan 2025 00:37 Can you help me with aligning the add cart icon to the bottom center?
tim Founder De Sweden Membro desde mai 2013 tim 19 jan 2025 01:45 Try changing this for the code you added to app.css: .products .product form[name="buy_now_form"] { display: none; position: absolute; top: 3em; right: 0.75em; } Into this: .products .product form[name="buy_now_form"] { display: none; }
colegiovictoria Project Leader De Costa Rica Membro desde out 2020 colegiovictoria 19 jan 2025 03:04 Hi! I did the changes and it is still the same. I am running LiteCart® 2.5.4
colegiovictoria Project Leader De Costa Rica Membro desde out 2020 colegiovictoria 19 jan 2025 03:09 It looks like this:
colegiovictoria Project Leader De Costa Rica Membro desde out 2020 colegiovictoria 19 jan 2025 03:10 Modified the app.css as instructed and cleared the cache but still stays the same place.
tim Founder De Sweden Membro desde mai 2013 tim 20 jan 2025 02:32 Change this <button class="btn btn-success btn-sm" type="submit" name="add_cart_product" value="true" title="<?php echo functions::escape_html(language::translate('title_add_to_cart', 'Add To Cart')); ?>"><?php echo functions::draw_fonticon('fa-shopping-cart'); ?></button> into <button class="btn btn-success btn-block" type="submit" name="add_cart_product" value="true"> <?php echo functions::draw_fonticon('fa-shopping-cart'); ?> <?php echo language::translate('title_add_to_cart', 'Add To Cart'); ?> </button>
colegiovictoria Project Leader De Costa Rica Membro desde out 2020 colegiovictoria 20 jan 2025 04:20 Success!