I’ve been using this theme for a couple of weeks and would like to find out how to do the following:
Increase (and possible change the black box to red for) the ‘Source/Via’ and ‘TAGS buttons under the individual posts., e.g.: “Source name / Source url” and “Via name / Via url” boxes. They are a bit small.
Thanks.
…Ian
Hello ianking,
You need to use a bit of Css to solve this problem. Please try the code below and place it in Theme panel->Custom Css area, like this: http://screencast.com/t/ZnQ2YasH
.td-post-source-tags {
font-size:20px;
}
.td-post-small-box span {
background-color: red;
}
.td-post-small-box a {
font-size:15px;
}
The result you should see here: http://screencast.com/t/yunfcvHFdC
Hope this helps and let us know how it goes!
Thank you for the message!
Hello,
For this one you will have to edit the theme files a little bit. You will need to find the td_module_single_base.php file and simply type in the name you want instead of source or via. Make sure you do not remove the quotation marks though (‘): http://screencast.com/t/xKH1ZQdiRNc
Thank you!