skip to Main Content

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

2

Answers


  1. Chosen as BEST ANSWER
    `.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


  2. 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!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search