• Resolved erminiadev

    (@erminiadev)


    Hi,

    I have a layout problem with the shipping address and the line height. I was able to change the line height of the billing address with the following css:

    #addresses h2{
    line-height: 35px!important; }

    but it did not change the line-height for the shipping address. I don’t know how to find the selector to change it. How can I fix this?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ThemeHigh

    (@themehigh)

    Please try the below code in your child theme’s functions.php file.

    add_filter('woocommerce_email_styles', 'thwecmf_woocommerce_email_style_address');
    
    function thwecmf_woocommerce_email_style_address($styles){
    	$styles .= '#addresses h2{ line-height: 35px !important; }';
    	return $styles;
    }

    We hope this helps.

    Further, if you could provide us with the exact requirement(style and the place in which you needed it) then we can check further from our side.

    Thank you!

    Thread Starter erminiadev

    (@erminiadev)

    Thank you, this worked!
    Have a nice day

    Plugin Author ThemeHigh

    (@themehigh)

    Great!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘shipping address layout’ is closed to new replies.