• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Zaypay style?

Majeski20

New Member
Joined
Apr 21, 2008
Messages
602
Reaction score
4
Location
Sweden
Hello guys! :w00t:

I've finally got the zaypay script to work. But since i have a darker layout the text gets abit invisible..
like this:

zaypayd.png


Can i change that somewhere?

Thanks :)
 
You should have a file called style.css in your Zaypay folder.

Oh yeah. But what should i change, i can't find anything with color here? :S

Code:
html, body { margin:0; padding:0;}
body { font: 11px/16px "Lucida Grande", Verdana, sans-serif; }

h1 { font-size: 14px; }
h2 { font-size: 13px; }

div#container {
  width: 500px;
  height: 300px;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid #ddd;
}

div.button { margin-top: 5px; text-align: center; }
 
Look in Zaypay/pages/0-header.php or 0-option.php :p, probably some CSS code in there.
 
Look in Zaypay/pages/0-header.php or 0-option.php :p, probably some CSS code in there.

Still nothing :(

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <meta http-equiv="content-type" content="text/html;charset=utf8">
  <title>Zaypay Payment</title>
  <link href="./style.css" media="screen" rel="stylesheet" type="text/css" />
</head>

<body>
  <div id="container">
    <h1>Payment</h1>
 
I checked it through and couldn't really find anything about the background color.
 
Back
Top