Magento 2: How to Change Product Title Font and Color

magento-2.1product

can anyone help me how to change the font and color of the product title? I don't have any theme? just installed the default Magento 2 product page

Best Answer

Under

/public_html/app/design/frontend/vendor/theme/Magento_Theme/web/css/source

you create a file called:_extend.less

add this code beneath it:

.base{
color: #ffffff ;
font-family: "Times New Roman", Times, serif;
}

Adjust the color and font to the ones you want and you should be good to go.

Related Topic