Increase size of the VIA, SOURCE & TAGS Buttons on ALL Posts

Posted in: Newspaper
Post count: 5

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

Post count: 23312

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!

Post count: 5

Perfect, thanks. Exactly the right size too!

Another question…

Is there a way to globally change the the wording of ‘Via’ or ‘Source’ to read ‘Website’ or ‘Facebook’ etc.

Thanks.

…Ian

Post count: 22421

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!

Post count: 5

Thanks, worked great.

…Ian

Post count: 73

Hello, this works also on 4.x version?

.td-post-source-tags {
font-size:20px;
}

I’ve tried but it seems not working…

Post count: 22421

Hello,

In newspaper 4 the classes were different so the code will have to be changed:
for the source and via:
.post-source-via{
font-size: 15px!important
}

For the tags:
.td-tag-black{
font-size:15px!important
}

Thank you!

Post count: 73

It works! and for tag name? how I can increase?

Post count: 22421

hi,
You can use this code:

.td-tags a{
font-size:15px;
}

Thanks.

Post count: 73

thank’s a lot! 😀

Viewing 10 posts - 1 through 10 (of 10 total)
The forum ‘Newspaper’ is closed to new topics and replies.