Roundcube Community Forum

 

Help with formatting

Started by CodaMan, August 02, 2007, 01:08:33 PM

Previous topic - Next topic

CodaMan

I just installed Roundcube, great app!

Three things I need help with:

1 - The login screen says "Welcome to RoundCube Webmail" at the top of the login box. How can I center it in that box?

2 - How can I change it to say, maybe, "Welcome to myDomain Webmail"?

3 - The browser shows a page title like "Roundcube Webmail :: Mail". How can I make that say myDomain Webmail :: Mail?

Any help on these?

Thanks...

bpat1434

Well, the centering is just a simple CSS style declaration. You may have to fiddle with the positioning, but if you open the template file "login.tpl" you can see what div that is. Then just find the div in the css file and modify it. I'm not 100% sure of the exact items; however, they aren't that difficult to figure out.

You'd have to dig into the code to find how to change the title and the logo text. I don't have the source in front of me, but if you just search for it, it will come up (possibly in a language file).
 
 

SKaero

In config/main.inc.php find:
$rcmail_config['product_name'] = 'RoundCube Webmail';

That will change the login page text and title


bschneider

Quote from: CodaMan 1 - The login screen says "Welcome to RoundCube Webmail" at the top of the login box. How can I center it in that box?


I just did this to the login.html page on or about line 50..
<center>
<div class=&quot;boxtitle&quot;><roundcube:label name=&quot;welcome&quot; /></div>
</center>