Hello luna81,
1. Login as admin and go on theme customizer Dashboard >> Apperance >> Customize or Click on Custimze link on top bar from front-end.
2. Then navigate Advanced Settings and put below css into Custom CSS textarea then click Save & Publish button.
#comments .media-body p { font-size: 20px; }

Hope this will helps you.
Thread Starter
luna81
(@luna81)
Thank you so much, that worked for me. Now i have an issue in that my hyperlinks were not blue. I found some code but as well as making the hyperlinks blue it also made the social media icons and categories folders blue as well. Any ideas as i only want the hyperlinks to the products to be blue. Thanks.
Your sitewide hyperlink colors will be controlled by Theme options> Basic Styling>, and set your Primary Color.
One solution would be to add a class to the links that you’d like to have this styling when creating the links on your site. Then you could use some custom CSS to set those links with that class to appear a certain way.
When you add a link with a class, it will look like this:
<a href="http://www.asos.com/style-mafia/style-mafia-stella-sweater-in-cable-knit-with-ruffle-sleeve/prd/6958789?iid=6958789" target="_blank" class="product-link-ext">Style Mafia Stella Sweater in Cable Knit with Ruffle Sleeve via ASOS</a>
See the class="product-link-ext" part of the html? That will give each link that you want the class of .product-link-ext.
So once you add that class to your html, then you can add CSS like this to theme options> advanced styling:
.product-link-ext {
color: blue;
font-size: 16px;
}
Does this make sense for you?
-Kevin
-
This reply was modified 9 years, 5 months ago by
Kevin.