Page 1 of 1

Adjust the height of right blocks' headers

Posted: 27. August 2010 11:34
by RssV
Your Portal Version: 1.0.5
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge
Boardlink: http://www.jogosvelhos.com/

PHP Version: Olympus

What have you done before the problem was there?
Installed the Portal and it appeared this way.

What have you already tryed to solve the problem?
Searched lots of files for any "height" references.

Description and Message
Hello,

OK, I created another topic not to mess the other one. I appreciate you guys for not judjing I'm "flooding", 'cause I really struggled to solve this issue myself. And I couldn't.

The "problem" is: in my portal ( www.jogosvelhos.com ) the header of the right blocks has more "height" han the header of the main blocks, which are o the right/center. This is not a BIG deal which will make the site not to work, but I'd like to let all the blocks headers with the same height. Anyone knows what I should edit to get this result?

Thanks.

Adjust the height of right blocks' headers for Style xandgre

Posted: 27. August 2010 13:54
by archivar
Hi,
try using this for Style xandgre:
open: root/styles/xandgrey/theme/stylesheet.css
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

th {
	color: #FFFFFF;
	font-size: 11px;
	font-weight: bold;
	background-color: #737373;
	background-image: url('./images/cellpic3.gif');
	white-space: nowrap;
	padding: 7px 5px;
}
Replace with
Tip: Replace the preceding line(s) to find with the following lines.

Code: Select all

th {
	color: #FFFFFF;
	font-size: 11px;
	font-weight: bold;
	background-color: #737373;
	background-image: url('./images/cellpic3.gif') top repeat-x;
	white-space: nowrap;
	padding: 0 5px;
	height: 27px;
}

Re: Adjust the height of right blocks' headers

Posted: 27. August 2010 14:18
by RssV
Pretty good, archivar :) Thanks!

The headers have the same height now.

I noticed that they don't have the "2 color gradient" on their bgs anymore. The bgs are just gray. That's what it was supposed to get like with the change?

Image

Anyways, I prefer with no bg than with different heights :mrgreen:

Re: Adjust the height of right blocks' headers

Posted: 27. August 2010 14:46
by archivar
"2 color gradient"
open: root/styles/xandgrey/theme/stylesheet.css
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

th {
	color: #FFFFFF;
	font-size: 11px;
	font-weight: bold;
	background-color: #737373;
	background-image: url('./images/cellpic3.gif');
	white-space: nowrap;
	padding: 7px 5px;
}
Replace with
Tip: Replace the preceding line(s) to find with the following lines.

Code: Select all

th {
	color: #FFFFFF;
	font-size: 11px;
	font-weight: bold;
	background-color: #737373;
	background-image: url('./images/cellpic3.gif');
	white-space: nowrap;
	padding: 0 5px;
	height: 27px;
}