Home > Software engineering >  Custom CSS Sidebar Shop Wordpress
Custom CSS Sidebar Shop Wordpress

Time:10-20

could you help with a css for currency i want currency to like same like price please help https://snipboard.io/q9uTQe.jpg and would you please help for the css https://snipboard.io/8Uo4Mg.jpg for this as i am not able to get a css for size above and colors below , im really strugling with it

CodePudding user response:

For making the currency font as same as the price you need to override the default CSS Try the CSS given below and let me know if it works or not.

.main-archive-product h4>sup { 
  font-size: 13px !important;
  font-weight: 600 !important;
 }

For swapping the position of size and colors try to add the below custom CSS. Note: In case it's not working please try to make these CSS properties important.

.bwp-filter-ajax #bwp_form_filter_product {
  display: flex;
  flex-direction: column;
}

.bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price {
  order: 1;
}

.bwp-filter-ajax #bwp_form_filter_product .bwp-filter-size {
 order: 2;
}

.bwp-filter-ajax #bwp_form_filter_product .bwp-filter-color {
  order: 3;
}

Let me know if it helps or not!

CodePudding user response:

`.bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price {
  order: 1 !important;
  order: 2 !important;
  order: 3 !important;
  }`

hey this one worked tysmm sir siraj

  • Related