1
robertelo
Need help about a theme please
  • 2008/12/2 4:54

  • robertelo

  • Just popping in

  • Posts: 77

  • Since: 2008/11/28


Hi everyone,

Like every XOOPS site, it is normal to see such a message:
Quote:
............
If the page doesn't automatically reload, please click here


My problem is that i can't see this message because of the font color, i only see "Here".

Can you tell me please where I should change the text color for this?


Thanks


2
vamptrix
Re: Need help about a theme please
  • 2008/12/2 9:02

  • vamptrix

  • Theme Designer

  • Posts: 424

  • Since: 2008/5/3 1


You should change this in your system templates, which is pretty easy. Have you changed system templates before?

I can't post to do it now (at school), but I'll let you know later today. (I will try giving you the HTML file directly)

Kevin
I used to use this account, but no longer.

3
robertelo
Re: Need help about a theme please
  • 2008/12/2 9:28

  • robertelo

  • Just popping in

  • Posts: 77

  • Since: 2008/11/28


Thank you very much Kevin,I will wait for you. Between I am just a newbie, never modified templates before, but i can follow your instructions very well.

See you later then.

4
vamptrix
Re: Need help about a theme please
  • 2008/12/2 17:27

  • vamptrix

  • Theme Designer

  • Posts: 424

  • Since: 2008/5/3 1


Sorry for being so slow, robertelo :)

Firstly you need to go to your templates - because you're new, I'll just give you the URL, which ishttp://www.yoursite.com/modules/system/admin.php?fct=tplsets

There you'll see several things, including a link "Clone" (below actions), click on it and enter a new name for your template (I'll just call it "basic") and press enter.
Then you'll see a whole list of text, just scroll down and click on Back to template set manager.

You'll see that there is a new row, called basic. Click on "System [List (27)]" (number can be different from 27). You should click on List.
Then you should see the file "system_redirect.html". Further in that row, you'll see Edit. Click on it.

Then you'll see something like this:
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<
html>
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=<{$xoops_charset}>" />
<
meta http-equiv="Refresh" content="<{$time}>; url=<{$url}>" />
<
title><{$xoops_sitename}></title>
<
link rel="stylesheet" type="text/css" media="all" href="<{$xoops_themecss}>" />
</
head>
<
body>
<
div style="text-align:center; background-color: #EBEBEB; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF; border-right: 1px solid #AAAAAA; border-bottom: 1px solid #AAAAAA; font-weight : bold;">
  <
h4><{$message}></h4>
  <
p><{$lang_ifnotreload}></p>
</
div>
<{if 
$xoops_logdump != ''}><div><{$xoops_logdump}></div><{/if}>
</
body>
</
html>


Delete all of that and replace it with (if your text is white)
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<
html>
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=<{$xoops_charset}>" />
<
meta http-equiv="Refresh" content="<{$time}>; url=<{$url}>" />
<
title><{$xoops_sitename}></title>
<
link rel="stylesheet" type="text/css" media="all" href="<{$xoops_themecss}>" />
</
head>
<
body>
<
div style="text-align:center; background-color: #000; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF; border-right: 1px solid #AAAAAA; border-bottom: 1px solid #AAAAAA; font-weight : bold;">
  <
h4><{$message}></h4>
  <
p><{$lang_ifnotreload}></p>
</
div>
<{if 
$xoops_logdump != ''}><div><{$xoops_logdump}></div><{/if}>
</
body>
</
html>



or with this (if your text is black):
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<
html>
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=<{$xoops_charset}>" />
<
meta http-equiv="Refresh" content="<{$time}>; url=<{$url}>" />
<
title><{$xoops_sitename}></title>
<
link rel="stylesheet" type="text/css" media="all" href="<{$xoops_themecss}>" />
</
head>
<
body>
<
div style="text-align:center; background-color: #FFF; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF; border-right: 1px solid #AAAAAA; border-bottom: 1px solid #AAAAAA; font-weight : bold;">
  <
h4><{$message}></h4>
  <
p><{$lang_ifnotreload}></p>
</
div>
<{if 
$xoops_logdump != ''}><div><{$xoops_logdump}></div><{/if}>
</
body>
</
html>


This simply changes the background (it should do this), and you can choose your own color too (but it's better to keep a basic color), and it does not change the color of the text (that's deciced in your theme itself, so you need to modify that, but in that way, you break other stuff).

Then you press on submit.

Then you go to your general settings (http://www.yoursite.com/modules/system/admin.php?fct=preferences&op=show&confcat_id=1) and you scroll down, until you see "Default template set" - next to it should be a dropdown menu with "default" shown. Click on it and choose basic (or however you named the template) and scroll down and click on Go!.

This should solve your problem

Kevin.
(a thank you is always welcome)
I used to use this account, but no longer.

5
robertelo
Re: Need help about a theme please
  • 2008/12/2 22:45

  • robertelo

  • Just popping in

  • Posts: 77

  • Since: 2008/11/28


Wow!! it works, Thank you so much Kevin.

6
vamptrix
Re: Need help about a theme please
  • 2008/12/3 7:55

  • vamptrix

  • Theme Designer

  • Posts: 424

  • Since: 2008/5/3 1


Glad to have helped you ;)

Kevin
I used to use this account, but no longer.

Login

Who's Online

205 user(s) are online (111 user(s) are browsing Support Forums)


Members: 0


Guests: 205


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits