Page 1 of 1

Font size

Posted: 28. June 2008 06:28
by deanandeva
Hi I have installed the poratl and very happy with it, I am wodering though, how to increase the text size within. RECENT, it seems really small is this somehow connected to the font size of wordgraph?


http://www.discussuc.com

Re: Font size

Posted: 28. June 2008 11:29
by Kevin
Open root\styles\prosilver\template\portal\block\recent.html

and remove all

Code: Select all

<small>
and

Code: Select all

</small>

Re: Font size

Posted: 30. June 2008 10:45
by deanandeva
Thanks Kevin,

How do I change the background color in Custom Centre ? I want to change it to white only ?

Cheers


Dean

Re: Font size

Posted: 30. June 2008 22:50
by thomas.d
deanandeva wrote:How do I change the background color in Custom Centre ? I want to change it to white only ?
Hi Dean,

what do you mean with "Custom Centre"?

Basically colour-settings are made in the appropriate css-files. To find out which css to alter you may

Open

root/styles/*your_style*/template/portal/block/*any_block.html*

Then look which classes are used, for example

<div class="panel">

Don't forget to purge your cache after uploading the altered file/s!

Then go and check which css-files are defining the class "panel", in this case they are

colours.css
common.css
content.css

In colours.css you will find

Code: Select all

.panel {
	background-color: #EFF0F0;
	color: #323335;
This defines the background- and the text-color.

Here you can set your changes, for a white background you will have to use

Code: Select all

	background-color: #FFFFFF;