Hi,
I've got a last problem with my portal background: it use the colour bg body but forget to use body simple too.
On my board, it's like this:
Gray body (1) and simple "white" body (2) for the body index
On my portal, it's like this:
Only gray body
My ACP link (and the link for your website too) becomes almost invisible:
I think this part in CSS (based on subsilver2 style) is missing in portal body but I don't know where and how to add it
}
#body-simple {
background: #F0F1F2;
padding: 5px;
}
Thank you for your help
A last problem with Portal background
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
- Former Team Member
- Posts: 625
- Joined: 19. January 2008 23:56
- phpBB.de User: thomas.d
- phpBB.com User: thomas.d
- Contact:
Re: A last problem with Portal background
Hi inikad,
I don't know which style you are using, but ...
the dark gray background color is #56565E
Now you could go and look in the style's css, where this color is defined, then replace it with #F0F1F2 which is your light gray.
(And I bet that this is not gonna be the "last problem with Portal background" ... )
I don't know which style you are using, but ...
the dark gray background color is #56565E
Now you could go and look in the style's css, where this color is defined, then replace it with #F0F1F2 which is your light gray.
(And I bet that this is not gonna be the "last problem with Portal background" ... )
Viele Grüße
Thomas
Deutsche Sprachdateien für
[Alpha] phpBB Calendar 0.0.8 (alightner) | [RC] phpBB Arcade 1.0.RC8 |
ACP Add User MOD 1.0.0 |
Thomas
Deutsche Sprachdateien für
[Alpha] phpBB Calendar 0.0.8 (alightner) | [RC] phpBB Arcade 1.0.RC8 |
ACP Add User MOD 1.0.0 |
Re: A last problem with Portal background
My style is Etech gray (subsilver2 like).
The problem with your solution is that my board use two colors for its background: one for the page (a repeat gray .gif) and a margin to put à white/gray background all around the forum body and not on all the page. And I want to keep both of them.
With my bad english, watch the screen catpures to show you the difference between board and portal:
Board with a grey background (1)and on this background, a second in white visible between the forums and the menus(2)
Portal with only grey background:
Portal appears to want to use that grey background and not the second in its stylesheet. But in board CSS, both are present:
I know how to custom blocks (I tried with "whosonline") in it but I don't find how to solve this backrgound difference...
The problem with your solution is that my board use two colors for its background: one for the page (a repeat gray .gif) and a margin to put à white/gray background all around the forum body and not on all the page. And I want to keep both of them.
With my bad english, watch the screen catpures to show you the difference between board and portal:
Board with a grey background (1)and on this background, a second in white visible between the forums and the menus(2)
Portal with only grey background:
Portal appears to want to use that grey background and not the second in its stylesheet. But in board CSS, both are present:
Code: Select all
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
color: #000;
background: #62646B url(images/body.gif);
font-size: 10px;
margin: 0;
padding: 0 5px;
}
#body-simple {
background: #F0F1F2;
padding: 5px;
}