Stefano
Stefano

Reputation: 143

Change font size and color in php echo

I have to change the size and color of the word "PRECIO DIGITAL" and also the price value. The php code is this:

add_action( 'woocommerce_single_product_summary', "show_digital_price", 9 );
function show_digital_price(){
$precio_digital = get_field('precio_digital');
if($precio_digital) {
echo '<b>PRECIO DIGITAL: </b>';
echo $precio_digital;
echo "<br />";
}
}

I've tried adding div style like this:

echo '<div style='font-size:1.25em;font-color:#0e3c68'>PRECIO DIGITAL: </b>';

but it doesn't work. Moreover I don't know how to change the size and color of the price itself.

Take a look to the URL where I want to change it (I'd like have it the same font size and color of the normal price): https://www.editorialufv.es/catalogo/claves-de-seguridad/

Any solution?

Upvotes: 2

Views: 31413

Answers (2)

Shital Marakana
Shital Marakana

Reputation: 2887

use below code for color and div

<?php
add_action( 'woocommerce_single_product_summary', 'show_digital_price', 9 );
function show_digital_price(){
    $precio_digital = get_field('precio_digital');
    if($precio_digital) {
        echo '<div style="font-size:1.25em;color:#0e3c68;font-weight:bold;">PRECIO DIGITAL: <span style="font-size:1.25em;color:#0e3c68;font-weight:bold;">'.$precio_digital.'</span></div>';
        //echo $precio_digital;
        echo "<br />";
    }
}
?>

Upvotes: 2

TarangP
TarangP

Reputation: 2738

What About this ?

<?php

echo '<div style="font-size:1.25em;color:red">PRECIO DIGITAL: </div>';

Check it Here

Upvotes: 0

Related Questions