Page 1 of 1

Expand the size of the Portal

Posted: 18. March 2013 01:37
by korayaksu61
Hi, I installed phpbb3 portal on my board3_portal_2_0_1.zip's. But one thing I've noticed. Portal size seems too narrow. I tried, but I want to change the width of the Control Panel Management If I can do this. As in the picture below. I hope we can solve this problem with the code. Can you give me the way to the Home Page or the Administration Control Panel to expand the code to expand outside the Home Page Is there another way? Waiting for your help. Thanks in advance.

Image

Re: Expand the size of the Portal

Posted: 18. March 2013 10:51
by Marc
Those settings only change the width of columns which means your center column will become narrower. Your style is probably restricting the size of your portal. A link to your board might actually help though.

Re: Expand the size of the Portal

Posted: 18. March 2013 11:20
by korayaksu61
But what can we do and what codes you can do this encoding stylesheet file. Can you help with this?

Re: Expand the size of the Portal

Posted: 10. May 2013 14:35
by Mordynak
I know this is a bit late but, If you want to change the width of your form to better accommodate the portal you need to open your styles "common.css"

Find this area

Code: Select all

/* Main blocks
---------------------------------------- */
#wrap {
	padding: 0 20px;
	min-width: 650px;
}
And change it however you like.

You may want to refer to this
https://www.phpbb.com/kb/article/fixed-width-prosilver/

Its more of a phpbb issue, not a Board3Portal issue.

Hope this helps!

Re: Expand the size of the Portal

Posted: 18. May 2013 19:13
by korayaksu61
I was able to expand its mid-block on the portal.

Open:

Code: Select all

http://www.yoursite.com/styles/yourtheme/template/portal/portal_body.html
Find:

Code: Select all

<table id="portal-body" cellpadding="0" cellspacing="0" border="0" width="100%">
Change:

Code: Select all

width="130%"

Re: Expand the size of the Portal

Posted: 18. May 2013 22:26
by talonos
Mordynak wrote:I know this is a bit late but, If you want to change the width of your form to better accommodate the portal you need to open your styles "common.css"

Find this area

Code: Select all

/* Main blocks
---------------------------------------- */
#wrap {
	padding: 0 20px;
	min-width: 650px;
}
And change it however you like.

You may want to refer to this
https://www.phpbb.com/kb/article/fixed-width-prosilver/

Its more of a phpbb issue, not a Board3Portal issue.

Hope this helps!

this is the best one to make your whole board fit better on different screen resolutions. the 130% is not the best as it will cause overlapping of blocks and the whole page may not site right on the screen width ways.