Magento 1.9 – How to Edit RWD Theme

magento-1.9theme

I would like to customize my magento home page.

  1. How to Edit fonts in magento rwd theme to default theme font?
  2. How to edit color of the text in homepage?

enter image description here

Best Answer

You may edit the skin\frontend\rwd\default\css\style.css. You will find the button class with font-family and color

.button, .cart-table .product-cart-actions .button, #co-shipping-method-form .buttons-set .button, .footer .button {
background: none repeat scroll 0 0 #3399cc;
border: 0 none;
color: #ffffff;
display: inline-block;
font-family: -moz-fixed,"Helvetica Neue",Verdana,Arial,sans-serif;
font-size: 13px;
font-weight: normal;
line-height: 19px;
padding: 7px 15px;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
white-space: nowrap;

}

Line:911

Related Topic