• Resolved rditty

    (@rditty)


    I would like to make the prices bold in the services section of my website. In each service description it lists the price and I would like for that number to be bold.

    Is there an easy way to do that?

    concealedsafety.com

    Thanks

Viewing 1 replies (of 1 total)
  • Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Hello @rditty

    For this you have to made some changes in “customizer.php” and “home-service.php” file.

    Please follow below instruction:-

    1. Open “customizer.php” file in any text editor.

    2. go to line number 675. there you found below line of code
    'sanitize_callback' => 'awada_sanitize_textarea',
    Remove that line of code and save changes

    3. Now open “home-service.php” and go to line number 59.

    4. On that line you will found below code
    <?php echo esc_attr($awada_theme_options['service_text_' . $j]); ?>

    Replace above code with below given code
    <?php echo $awada_theme_options['service_text_' . $j]; ?>

    5. Save the changes.

    Now on your service description you can use <b></b> tag to bold your price.

    Please update us regards this.

    Thank You

Viewing 1 replies (of 1 total)
  • The topic ‘How to bold words in Services section’ is closed to new replies.