Your Portal Version: 2.0.2
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Beginner
What have you done before the problem was there?
What have you already tryed to solve the problem?
Description and Message
Hi,
Sorry the question may be obvious to some but, I would like to increase the size of the font in the recent block only, could someone explain how
Thanks
Clive
Change font size in a single block
Forum rules
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Re: Change font size in a single block
Hi
Open: root/styles/stylename/template/portal/modules/yourblock
Find:
Replace with:
Change at 2em to your specifications.
DIY instructions: Knowledge Base: Changes to forums styles
Open: root/styles/stylename/template/portal/modules/yourblock
Find:
Code: Select all
{$TITLE}
Code: Select all
<span style="font-size:2em">{$TITLE}</span>
DIY instructions: Knowledge Base: Changes to forums styles
Gruß Udo
-
Topic author - Active Member
- Posts: 26
- Joined: 19. November 2011 11:25
- phpBB.de User: cwjs
- phpBB.com User: cwjs
Re: Change font size in a single block
Hi Kirk,
Thanks for helping, but it only changes the title of the block, I want it to change what is inside the block (recent topics etc)
Regards
Clive
Thanks for helping, but it only changes the title of the block, I want it to change what is inside the block (recent topics etc)
Regards
Clive
Re: Change font size in a single block
Open this Block
Find:
Add before:
Tip: Tip: Add these lines on a new blank line before the preceding line(s) to find.
Add after:
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Find 3x :
Replace with 3x :
Change at 2em to your specifications.
Find:
Code: Select all
<!-- IF .latest_announcements --><td class="row1"><strong>{L_PORTAL_RECENT_ANN}</strong></td><!-- ENDIF -->
<!-- IF .latest_hot_topics --><td class="row1"><strong>{L_PORTAL_RECENT_HOT_TOPIC}</strong></td><!-- ENDIF -->
<!-- IF .latest_topics --><td class="row1"><strong>{L_PORTAL_RECENT_TOPIC}</strong></td><!-- ENDIF -->
Tip: Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code: Select all
<span style="font-size:2em">
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code: Select all
</span>
Code: Select all
<span class="gensmall">
Code: Select all
<span class="gensmall" style="font-size:2em">
Gruß Udo
-
Topic author - Active Member
- Posts: 26
- Joined: 19. November 2011 11:25
- phpBB.de User: cwjs
- phpBB.com User: cwjs
Re: Change font size in a single block
Hi Kirk,
Brilliant !!, thanks for your help.
Regards
Clive
Brilliant !!, thanks for your help.
Regards
Clive