Page 1 of 1

How to change properties of Blocks?

Posted: 18. August 2013 14:57
by scorpio
Your Portal Version: 2.0.0
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Beginner

MySQL Version: How to change properties of Blocks?

What have you done before the problem was there?


What have you already tryed to solve the problem?
Nothing

Description and Message
I want to reconfigure the blocks of portal. I want help of following points:

1. How to change the background color of the block?
2. How to change the text color and properties of the block?
3. How to show a block in whole forum? I want to show the top block always.
4. How to set an image as the background of the particular block?
5. How to hide titles of block?

Help will be appreciated. Thanks in Advance.

Re: How to change properties of Blocks?

Posted: 18. August 2013 21:23
by Kirk
scorpio wrote:1. How to change the background color of the block?
2. How to change the text color and properties of the block?
5. How to hide titles of block?
Look here: https://www.phpbb.de/community/viewtopi ... 2#p1306572 it's in German
scorpio wrote:3. How to show a block in whole forum? I want to show the top block always.
This is currently not possible.
scorpio wrote:4. How to set an image as the background of the particular block?
Open the colour.ccs your Styles
Find:

Code: Select all

.bg3	{ background-color: #cadceb; }
Add after:

Code: Select all

.bg1-portal	{ 
background-color: #ECF3F7; 
background-image: url("{T_THEME_PATH}/images/bg_forum.gif"); 
}
.bg2-portal	{ 
background-color: #ECF3F7; 
background-image: url("{T_THEME_PATH}/images/bg_forum.gif"); 
}
Search in the block where you want to change: .bg1 .bg2
Replace with: .bg1-portal .bg2-portal

DIY instructions: Knowledge Base: Changes to forums styles

Re: How to change properties of Blocks?

Posted: 19. August 2013 02:47
by scorpio
Sir, thanks for quick response.