No background on blocks, aswell as some misplacement
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.
No background on blocks, aswell as some misplacement
Your Portal Version: 1.0.2
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Description and Message
Hi
As you can see on the picture, there are no backgrounds on the blocks. How do I solve this?
Another thing is, as you can see, the right side menu goes a bit over the midle blocks... how to solve?
Picture link: http://huskyforum.org/portalfeil.png
Thanks.
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Description and Message
Hi
As you can see on the picture, there are no backgrounds on the blocks. How do I solve this?
Another thing is, as you can see, the right side menu goes a bit over the midle blocks... how to solve?
Picture link: http://huskyforum.org/portalfeil.png
Thanks.
-
- Former Team Member
- Posts: 2266
- Joined: 19. January 2008 01:17
- phpBB.de User: Christian_N
- phpBB.com User: Christian_N
- Location: Frankfurt
- Contact:
Re: No background on blocks, aswell as some misplacement
Yes.Christian_N wrote:Already tried? viewtopic.php?f=24&t=553
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: No background on blocks, aswell as some misplacement
Check the edits to add the portal.css - you might have forgotten to do them or upload the file.
Purge cache afterwards.
Purge cache afterwards.
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
Re: No background on blocks, aswell as some misplacement
There are no edits you're supposed to do with the portal.css file? I can't find anything about it, either in the main install xml, or the update from phpbb3portal 1.2.2 xml file(which I have used, because I had the phpbb3portal installed)Kevin wrote:Check the edits to add the portal.css - you might have forgotten to do them or upload the file.
Purge cache afterwards.
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: No background on blocks, aswell as some misplacement
He is talking about the stylesheet.css edit.
Re: No background on blocks, aswell as some misplacement
Ah ok. Yes, I have added @import url("portal.css"); at the bottom.
Re: No background on blocks, aswell as some misplacement
Ok now I've got no clue of what happened. I hadn't done anything, and after entering the browser and webpage after a while, it all worked..
the URL to the site is h u s k y f o r u m . o r g .. just without spaces obviously.
Thanks anyway guys.. but got no clue of how it happened.
the URL to the site is h u s k y f o r u m . o r g .. just without spaces obviously.
Thanks anyway guys.. but got no clue of how it happened.
Re: No background on blocks, aswell as some misplacement
Aswell as I have a topic...
How do I change the color of the "borders" that I've marked up with red around? Is it only portal.css I have to alter?
How do I change the color of the "borders" that I've marked up with red around? Is it only portal.css I have to alter?
-
- Former Team Member
- Posts: 2266
- Joined: 19. January 2008 01:17
- phpBB.de User: Christian_N
- phpBB.com User: Christian_N
- Location: Frankfurt
- Contact:
Re: No background on blocks, aswell as some misplacement
Read Portal FAQ please: viewtopic.php?f=24&t=917
Re: No background on blocks, aswell as some misplacement
I have read the FAQ, and I have read the how to edit portal.css thread. That is why I am asking. When I do everything that is done in that thread, I can't seem to manage to change the stuff that I've marked up in the picture posted above. That is why I'm wondering what I need to change.Christian_N wrote:Read Portal FAQ please: viewtopic.php?f=24&t=917
Re: No background on blocks, aswell as some misplacement
No one willing to tell what code I need to change to change the color of what I've marked up?
It's on a live forum so it would be good to change it as fast as possible.
Thanks
Scott
It's on a live forum so it would be good to change it as fast as possible.
Thanks
Scott
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: No background on blocks, aswell as some misplacement
First an image:
The green part is controlled by the "borders-bottom" of this part of portal.css:
The red part is controlled by this part of the portal.css:
The green part is controlled by the "borders-bottom" of this part of portal.css:
Code: Select all
.portal-navigation li a{
display: block;
padding: 3px 0;
padding-left: 9px;
width: auto; /*185px minus all left/right paddings and margins*/
text-decoration: none;
color: white;
background-color: #11A1E8;
background-image: url("{T_THEME_PATH}/images/portal/bg_portalmenu.gif");
border-bottom: 1px solid #90bade;
border-left: 7px solid #6ACEFF;
}
Code: Select all
.portal-navigation div.menutitle{
color: #000000;
border-bottom: 1px solid #6ACEFF;
padding: 1px 0;
padding-left: 5px;
background-color: #6ACEFF;
font: bold 90% 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
font-size: 12px;
}
Re: No background on blocks, aswell as some misplacement
Ok thanks. It worked now.