i could make a html one and just write in the box , but its plain , is there anyway to get it in colour and font?
You could do a table in an html block and make the background of the table the color you want.
The fonts you could use html to do.
<font face="verdana" size="1" color="#FFFFFF">your text</font>
Replace "verdana, 1, #FFFFFF" with the font style, size, and color you want to use.
This page has some good info on how to do html as well as doing tables, etc:
http://cedesign.net/index.htmOr you could set the background color/links and font color of the block by editing the stylesheet.
You would add the following to the top of your css
(note: the word "portalbgcolor" can be changed. be sure you use the same word in both the css and the portal block)
Edit the colors to your liking
.portalbgcolor
{
color: #FFFFFF;
background-color: #FFFFFF;
}
.portalbgcolor a:link, .portalbgcolor a:viisted
{
color: #FFFFFF;
}
Then when you do the html block in your portal do this:
<div class="portalbgcolor">
your text goes here
</div>
Take a look thru the Portal Guide thread. There are some tips in there as well
Complete Guide to Setting up the Portal