Time for action—Changing the size of the text and font style on the center column blocks
We can change the size of the text and font style on the center column block by modifying the following lines in the
/* Special style for block products in center column */
section.#center_column div.products_block h5 a { color: #374853; font-size:1.1em }
For the
font-size
, we can make it smaller or bigger by adjusting the value of theem
.We can add an additional style by inserting a line like the following one:
font-family: Verdana, Geneva, sans-serif;
The following is a modified syntax:
#center_column div.products_block h5 a { color: #374853; font-size:1.1em; font-family: Verdana, Geneva, sans-serif }
Tip
You should always provide font backups in case the font is unavailable.
You can work on the web developer tool (for example, Firebug or Web Developer extension) to preview the changes as you edit them. If you feel happy with the changes you can then edit your file according to the changes and...