PDA

View Full Version : How can I change the font size or Archive and Print pages?


brandon515
02-16-2021, 10:38 PM
I have been searching everywhere in VB to try and figure out where to go to change the size of the post font for Archive and Print pages.

Any help would be greatly appreciated.

Dr.CustUmz
02-17-2021, 09:05 AM
template printthreadbit

add style to the message container

<div class="content">
<blockquote class="restore" style="font-size: 2em;">{vb:raw post.message}</blockquote>
</div>

for archive: template ad_archive_above_content1
<style>
.posttext {
font-size: 2em;
}
</style>

brandon515
02-17-2021, 02:49 PM
Thank you Dr.CustUmz!

I had been trying to figure this out forever! It worked.

I really appreciate your help.

Dr.CustUmz
02-17-2021, 02:59 PM
No problem, there are actually many ways to go about it so I presented 2 types of solutions so you could learn from them and be able to adapt either way into other places as well.

Another tip, when you cant find something you want to change, the easiest thing to do is go into options, turn html comments on. Then when your on a page you want to change something, view the source and find the text you want to change. then scroll up and see what the first commented template is. that's most of the time where the change will need to be.

brandon515
02-17-2021, 04:12 PM
Ah, excellent! I had been using Chromes "Inspect" option, but didn't know about turning HTML comments on.

Thanks again!