how to edit the color of one line text on product page?


            
              {% if section.settings.stock_enable %}
                - {% if current_variant.inventory_management %}
                        {% if current_variant.inventory_quantity < 10 and current_variant.inventory_quantity > 0 %}
                          {% assign qty = current_variant.inventory_quantity %}
                          {{ 'products.product.stock_available' | t: count: qty }}
                        {% elsif current_variant.inventory_quantity == 0 or current_variant.inventory_quantity < 0 and current_variant.incoming %}
                          {% if current_variant.available %}
                            {% assign date = current_variant.next_incoming_date | date: format: 'date' %}
                            {{ 'products.product.will_not_ship_until' | t: date: date  }}
                          {% else %}
                            {% assign date = current_variant.next_incoming_date | date: format: 'date' %}
                            {{ 'products.product.will_be_in_stock_after' | t: date: date  }}
                          {% endif %}
                        {% endif %}
                      {% endif %}
                  
                
              {% endif %}
            

          
          
          {{ product.description }}
        

Hey team,

I am using the Venture theme and trying to edit the product-template.liquid file at line 186. How do I add the color red and bold the text like the picture below? Thanks

@ctsimon

If you are adding that description from the product’s admin page you don’t need any code.

Simply highlight the words you want to change the color and then click on the “color” button.

In case this doesn’t solve the issue please forward your website’s URL so we can debug the code and provide further assistance.

Kind regards,
Diego

Please add code:

5 AVAILABLE ONLY

it will display fine. Hope it helps!

Thank you both for the help, the formatting for the color wasn’t in the native tool within the text editor so LitCommerce code helps me edit the liquid file to adjust.