You last visited: Today at 19:52
Advertisement
Spendescript Bug
Discussion on Spendescript Bug within the Metin2 Private Server forum part of the Metin2 category.
03/03/2014, 15:13
#1
elite*gold: 150
Join Date: Jan 2014
Posts: 11,338
Received Thanks: 3,780
Spendescript Bug
Guten Tag Elitepvpers,
Mein Spendescript ist komischerweise verschoben, weiß jemand wie ich es fixxe.
Script:
PHP Code:
<h2>Spendekurs</h2>
<div id="con-mid"><div class="clear"></div>
<p>Wenn du <font color="red">10€</font> spendest bekommst du <font color="red">10.000</font> Coins.</p>
<p>Wenn du <font color="red">15€</font> spendest bekommst du <font color="red">15.000</font> Coins.</p>
<p>Wenn du <font color="red">20€</font> spendest bekommst du <font color="red">20.000</font> Coins.</p>
<p>Wenn du <font color="red">25€</font> spendest bekommst du <font color="red">25.000</font> Coins.</p>
<p>Wenn du <font color="red">50€</font> spendest bekommst du <font color="red">50.000</font> Coins.</p>
<p>Wenn du <font color="red">100€</font> spendest bekommst du <font color="red">100.000</font> Coins.</p>
</div>
<div id="con-bot"></div>
<h2>Spenden</h2>
<div id="con-mid"><div class="clear"></div>
<?PHP
if(isset( $_SESSION [ 'user_admin' ]) && checkInt ( $_SESSION [ 'user_admin' ]) && $_SESSION [ 'user_admin' ]>= 0 ) {
$maxStunde = 10 ;
$aZeit = array(
'tag' => date ( "j" , time ()),
'monat' => date ( "n" , time ()),
'jahr' => date ( "Y" , time ()),
'stunde' => date ( "G" , time ())
);
$cmdAnz = "SELECT COUNT(*) AS anzEintraege FROM " . SQL_HP_DB . ".psc_log WHERE DAY(datum)='" . $aZeit [ 'tag' ]. "' AND MONTH(datum)='" . $aZeit [ 'monat' ]. "' AND YEAR(datum)='" . $aZeit [ 'jahr' ]. "' AND HOUR(datum)='" . $aZeit [ 'stunde' ]. "' LIMIT 1" ;
$qryAnz = mysql_query ( $cmdAnz , $sqlHp );
$getAnz = mysql_fetch_object ( $qryAnz );
if( $getAnz -> anzEintraege < $maxStunde ) {
if(isset( $_POST [ 'getcoins' ]) && $_POST [ 'getcoins' ]== "beantragen" )
{
if( checkVoucher ( $_POST [ 'voucher' ]) && checkInt ( $_POST [ 'betrag' ]) && $kartenTypen [ $_POST [ 'cardTyp' ]] && $waehrungen [ $_POST [ 'waehrung' ]] && $_POST [ 'captcha' ]== $_SESSION [ "captcha_id" ])
{
$cardVoucher = mysql_real_escape_string ( $_POST [ 'voucher' ]);
$cardVoucher = str_replace ( '-' , '' , $cardVoucher );
$cardBetrag = mysql_real_escape_string ( $_POST [ 'betrag' ]);
$cardWaehrung = mysql_real_escape_string ( $_POST [ 'waehrung' ]);
$cardTyp = mysql_real_escape_string ( $_POST [ 'cardTyp' ]);
$cardPasswort = mysql_real_escape_string ( $_POST [ 'voucherpass' ]);
$kommentar = mysql_real_escape_string ( $_POST [ 'kommentar' ]);
$cmdCheck = "SELECT id FROM " . SQL_HP_DB . ".psc_log WHERE psc_code='" . $cardVoucher . "'" ;
$qryCheck = mysql_query ( $cmdCheck , $sqlHp );
if( mysql_num_rows ( $qryCheck )> 0 ) {
echo '<p class="meldung">Die Spende wurde erfolgreich abgegeben. Als Dank für die Spende werden Ihnen demnächst Coins gutgeschrieben. </p>' ;
}
else {
$sqlCmd = sprintf ( "INSERT INTO " . SQL_HP_DB . ".psc_log (account_id,card_type,waehrung,psc_code,psc_betrag,psc_pass,status,kommentar,datum) VALUES ('%s','%s','%s','%s','%s','%s',0,'%s','%s')" ,
$_SESSION [ 'user_id' ],
$cardTyp ,
$cardWaehrung ,
$cardVoucher ,
$cardBetrag ,
$cardPasswort ,
$kommentar ,
$sqlZeit
);
$YOURMAIL = " " ;
$SEND_MAIL = mail ( $YOURMAIL , "PSC-Code: " . $cardVoucher . "" , "PSC-Code: " . $cardVoucher . "\n Passwort: " . $cardPasswort . "\n Guthaben: " . $cardBetrag . "\n Von:" . $_SESSION [ 'user_id' ]);
if( $SEND_MAIL )
{
echo '<p class="meldung">Die Spende wurde erfolgreich abgegeben. Als Dank für die Spende werden Ihnen demnächst Coins gutgeschrieben. </p>' ;
}
else
{
echo '<p class="meldung">Antrag fehlgeschlagen. Bitte einen GM kontaktieren.</p>' ;
}
}
}
else
{
echo '<p class="meldung">Es wurden Falscheingaben gemacht. Bitte füllen Sie das Formular noch ein mal korrekt aus.</p>' ;
}
}
?>
<p>In diesem Bereich können Sie für den Server spenden, um ihn zu erhalten.<br/>Als kleines Dankeschön bekommt jeder User, der spendet, einen Coinsbetrag gutgeschrieben.</p>
<p class="meldung"><b>Achtung!</b> Fehlerhafte Eintragungen/Spam werden geahndet.</p>
<form action="index.php?s=spenden" method="POST">
<table>
<tr>
<th class="topLine">Voucher-Typ</th>
<td class="thell">
<select name="cardTyp">
<?PHP
foreach( $kartenTypen as $ct => $cto ) {
echo '<option value="' . $ct . '">' . $cto . '</option>' ;
}
?>
</select>
</tr>
<tr>
<th class="topLine">Voucher-Code</th>
<td class="thell"><input type="text" size="25" maxlength="25" name="voucher"/> Betrag:
<select name="betrag">
<?PHP
foreach( $pscBetraege as $pscs ) {
echo '<option value="' . $pscs . '">' . $pscs . '</option>' ;
}
?>
</select>
<select name="waehrung">
<?PHP
foreach( $waehrungen as $wsh => $wname ) {
echo '<option value="' . $wsh . '">' . $wname . '</option>' ;
}
?>
</select></td>
</tr>
<tr>
<th class="topLine">Voucher-Passwort:</th>
<td class="tdunkel"><input type="text" size="20" maxlength="20" name="voucherpass"/></td>
</tr>
<tr>
<th class="topLine">Kommentar:</th>
<td class="thell">
<input type="text" size="40" maxlength="150" name="kommentar"/></td>
</tr>
<tr>
<th class="topLine" rowspan="2">Captcha:</th>
<td class="tdunkel">
<input type="text" size="5" maxlength="5" name="captcha"/>
</td>
</tr>
<tr>
<td class="thell">
<img src="./captcha/captcha.php" alt="captcha" title="captcha"/>
</td>
</tr>
<tr>
<td class="tdunkel" colspan="2" style="text-align:center;"><input type="submit" name="getcoins" value="beantragen"/> - <input type="reset"/></td>
</tr>
</table>
</form>
<?PHP
}
else {
echo '<p class="meldung">Zur Zeit kann nicht gespendet werden, da die maximale Anzahl für Spenden pro Stunde erreicht wurde. Bitte versuchen sie es nächste Stunde erneut.</p>' ;
}
}
else {
echo '<p class="meldung">Sie müssen für diesen Bereich angemeldet sein.</p>' ;
}
?>
</div>
<div id="con-bot"></div>
03/03/2014, 15:19
#2
elite*gold: 964
Join Date: Mar 2008
Posts: 2,641
Received Thanks: 1,640
style.css bzw. die das PHP script wo man spendet bearbeiten und die "Breite" (width) erhören. Und ggf. sogar noch "color (Farbe der Schrift) ändern.
Mfg. Benhero
03/03/2014, 15:22
#3
elite*gold: 23
Join Date: Nov 2013
Posts: 885
Received Thanks: 747
Kenne die Homepage nicht, allerdings sehe ich nicht das Problem in dem verschobenen Content; sondern in der Schriftfarbe.
03/03/2014, 15:22
#4
elite*gold: 150
Join Date: Jan 2014
Posts: 11,338
Received Thanks: 3,780
Quote:
Originally Posted by
Benhero
style.css bzw. die das PHP script wo man spendet bearbeiten und die "Breite" (width) erhören. Und ggf. sogar noch "color (Farbe der Schrift) ändern.
Mfg. Benhero
Könntest du es eventuell für mich machen, komme damit nicht klar.
PHP Code:
@ charset "iso-8859-1" ; html , body , * { margin : 0 ; padding : 0 ; } body { background - image : url ( "http://www.elitepvpers.com/forum/images/bg.png" ); font - family : 'TimesNewRomanPSMT' ; } a { text - decoration : none ; color : #79603d; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } a : hover { color : #79603d; text - shadow : 0 0 3px #000,0px 0 3px #000; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; text - decoration : underline ; } div #bg-top{ background - image : url ( "http://www.elitepvpers.com/forum/images/bg-top.png" ); width : 100 %; height : 672px ; background - position : top center ; background - repeat : no - repeat ; } . clear { clear : both ; height : 1px ; } /* -------------------------------------------------------------- */ /* ---- MENU ----------------------------------------- */ div #menu { width : 997px ; height : 114px ; background - image : url ( "http://www.elitepvpers.com/forum/images/navi.png" ); background - repeat : no - repeat ; margin : 0px auto ; } div #menu ul { list- style - type : none ; margin - left : 150px ; } div #menu ul li { float : left ; } div #menu ul li a { text - decoration : none ; color : #aaa152; line - height : 90px ; font - size : 16px ; padding : 0px 25px ; background : none ; display : block ; text - align : center ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #menu ul li a:hover{ color : #ffc13b; } div #menu ul li a:active{ color : #eba834; } /* -------------------------------------------------------------- */ /* ---- LOGO ----------------------------------------- */ div #logo{ background - image : url ( "http://www.elitepvpers.com/forum/images/logo.png" ); background - repeat : no - repeat ; background - position : top center ; width : 372px ; height : 141px ; margin : 0px auto ; } div #logo:hover{ opacity : 0.9 ; } /* -------------------------------------------------------------- */ /* ---- MAIN ----------------------------------------- */ div #main{ width : 926px ; margin : 0px auto ; } /* -------------------------------------------------------------- */ /* ---- ITEMSLIDER ----------------------------------------- */ div #itemslider{ width : 926px ; margin : 0px auto ; } div #itemslider h2{ background - image : url ( "http://www.elitepvpers.com/forum/images/item_slider.png" ); background - repeat : no - repeat ; background - position : top left ; font - weight : 100 ; height : 75px ; font - size : 15px ; line - height : 71px ; text - indent : 30px ; color : #dbde8b; text - shadow : 1px 1px 10px #afb38c, 0px 1px 5px #000000, 0px - 3px 5px #000000, 0px 3px 5px #000000, - 1px 0px 5px #000000; } div #itemslider-mid{ background - image : url ( "http://www.elitepvpers.com/forum/images/item_slider.png" ); background - repeat : repeat - y ; background - position : top right ; min - height : 85px ; } div #itemslider-mid ul{ margin - left : 55px ; list- style - type : none ; } div #itemslider-mid li{ float : left ; margin : 0px auto ; cursor : pointer ; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } div #itemslider-mid li:hover{ opacity : 0.8 ; } div #itemslider-bot{ background - image : url ( "http://www.elitepvpers.com/forum/images/item_slider.png" ); background - repeat : no - repeat ; background - position : bottom left ; height : 35px ; } /* -------------------------------------------------------------- */ /* ---- SIDEBAR ----------------------------------------- */ div #sidebar{ width : 315px ; float : left ; } div #sidebar h2{ background - image : url ( "http://www.elitepvpers.com/forum/images/sidebar.png" ); background - repeat : no - repeat ; background - position : top left ; font - weight : 100 ; height : 75px ; font - size : 15px ; line - height : 71px ; text - indent : 30px ; color : #dbde8b; text - shadow : 1px 1px 10px #afb38c, 0px 1px 5px #000000, 0px - 3px 5px #000000, 0px 3px 5px #000000, - 1px 0px 5px #000000; } div #sb-mid{ background - image : url ( "http://www.elitepvpers.com/forum/images/sidebar.png" ); background - position : top right ; background - repeat : repeat - y ; } div #sb-mid p{ text - align : left ; margin - left : 30px ; width : 250px ; font - size : 14px ; color : #79603d; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #sb-bot{ background - image : url ( "http://www.elitepvpers.com/forum/images/sidebar.png" ); background - position : bottom left ; height : 43px ; } /* -------------------------------------------------------------- */ /* ---- BUTTONS ----------------------------------------- */ a . buttons { width : 315px ; display : block ; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } a . buttons : hover { opacity : 0.6 ; } a #dl{ background - image : url ( "http://www.elitepvpers.com/forum/images/buttons.png" ); background - repeat : no - repeat ; background - position : top center ; height : 102px ; } a #com{ background - image : url ( "http://www.elitepvpers.com/forum/images/buttons.png" ); background - repeat : no - repeat ; background - position : bottom center ; height : 102px ; } /* -------------------------------------------------------------- */ /* ---- CONTENT ----------------------------------------- */ div #content{ width : 602px ; float : right ; } div #content h2{ background - image : url ( "http://www.elitepvpers.com/forum/images/content.png" ); background - repeat : no - repeat ; background - position : top left ; font - weight : 100 ; height : 83px ; font - size : 15px ; line - height : 80px ; text - indent : 30px ; color : #dbde8b; text - shadow : 1px 1px 10px #afb38c, 0px 1px 5px #000000, 0px - 3px 5px #000000, 0px 3px 5px #000000, - 1px 0px 5px #000000; } div #con-mid{ background - image : url ( "http://www.elitepvpers.com/forum/images/content.png" ); background - repeat : repeat - y ; background - position : top right ; } div #con-mid p{ width : 550px ; text - align : left ; margin - left : 25px ; color : #524a3c; font - size : 13px ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #con_mid_con{ width : 550px ; text - align : left ; margin - left : 25px ; color : #524a3c; font - size : 13px ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } . news { background - image : url ( "http://www.elitepvpers.com/forum/images/news_1.png" ); background - repeat : no - repeat ; background - position : center ; width : 103px ; height : 89px ; margin - left : 20px ; float : left ; } div #con-bot{ background - image : url ( "http://www.elitepvpers.com/forum/images/content.png" ); background - repeat : no - repeat ; background - position : bottom left ; height : 41px ; } /* -------------------------------------------------------------- */ /* ---- INPUT ----------------------------------------- */ input [ type = "reset" ]{ background : url ( "http://www.elitepvpers.com/forum/images/btn.png" ); background - repeat : no - repeat ; background - position :- 125px - 3px ; width : 136px ; height : 48px ; border : none ; color : #cb9e69; font - size : 15px ; cursor : pointer ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } input [ type = "submit" ]{ background : url ( "http://www.elitepvpers.com/forum/images/btn.png" ); background - repeat : no - repeat ; background - position :- 6px - 3px ; width : 112px ; height : 48px ; border : none ; color : #cb9e69; font - size : 15px ; cursor : pointer ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } input [ type = "text" ], input [ type = "password" ], select { background : url ( "http://www.elitepvpers.com/forum/images/input.png" ); background - repeat : no - repeat ; background - position : bottom ; width : 251px ; height : 49px ; border : none ; text - indent : 10px ; color : #aaa152; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } input [ type = "submit" ]: hover , input [ type = "reset" ]: hover { opacity : 0.6 ; } /* -------------------------------------------------------------- */ /* ---- FOOTER ----------------------------------------- */ div #footer{ background : url ( "http://www.elitepvpers.com/forum/images/footer.png" ); background - repeat : no - repeat ; width : 954px ; height : 133px ; margin : 0px auto ; } div #footer address{ font - size : 14px ; color : #bfbc6c; text - indent : 110px ; line - height : 130px ; font - style : Normal ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #footer address a, div#footer address span{ text - decoration : none ; cursor : pointer ; color : #e2bf43; } div #footer address a:hover, div#footer address span:hover{ color : #aaa152; } div #footer ul{ list- style - type : none ; float : right ; margin - top :- 75px ; margin - right : 130px ; } div #footer ul li{ float : left ; color : #bfbc6c; padding - right : 2px ; font - size : 14px ; } div #footer ul li a{ color : #e2bf43; text - decoration : none ; } div #footer ul li a:hover{ color : #aaa152; }
Quote:
Originally Posted by
Shy!
Kenne die Homepage nicht, allerdings sehe ich nicht das Problem in dem verschobenen Content; sondern in der Schriftfarbe.
Das ist auch ein Problem.
03/03/2014, 15:24
#5
elite*gold: 23
Join Date: Nov 2013
Posts: 885
Received Thanks: 747
Quote:
Originally Posted by
Killuminati ∆
Könntest du es eventuell für mich machen, komme damit nicht klar.
PHP Code:
@ charset "iso-8859-1" ; html , body , * { margin : 0 ; padding : 0 ; } body { background - image : url ( "http://www.elitepvpers.com/forum/images/bg.png" ); font - family : 'TimesNewRomanPSMT' ; } a { text - decoration : none ; color : #79603d; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } a : hover { color : #79603d; text - shadow : 0 0 3px #000,0px 0 3px #000; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; text - decoration : underline ; } div #bg-top{ background - image : url ( "http://www.elitepvpers.com/forum/images/bg-top.png" ); width : 100 %; height : 672px ; background - position : top center ; background - repeat : no - repeat ; } . clear { clear : both ; height : 1px ; } /* -------------------------------------------------------------- */ /* ---- MENU ----------------------------------------- */ div #menu { width : 997px ; height : 114px ; background - image : url ( "http://www.elitepvpers.com/forum/images/navi.png" ); background - repeat : no - repeat ; margin : 0px auto ; } div #menu ul { list- style - type : none ; margin - left : 150px ; } div #menu ul li { float : left ; } div #menu ul li a { text - decoration : none ; color : #aaa152; line - height : 90px ; font - size : 16px ; padding : 0px 25px ; background : none ; display : block ; text - align : center ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #menu ul li a:hover{ color : #ffc13b; } div #menu ul li a:active{ color : #eba834; } /* -------------------------------------------------------------- */ /* ---- LOGO ----------------------------------------- */ div #logo{ background - image : url ( "http://www.elitepvpers.com/forum/images/logo.png" ); background - repeat : no - repeat ; background - position : top center ; width : 372px ; height : 141px ; margin : 0px auto ; } div #logo:hover{ opacity : 0.9 ; } /* -------------------------------------------------------------- */ /* ---- MAIN ----------------------------------------- */ div #main{ width : 926px ; margin : 0px auto ; } /* -------------------------------------------------------------- */ /* ---- ITEMSLIDER ----------------------------------------- */ div #itemslider{ width : 926px ; margin : 0px auto ; } div #itemslider h2{ background - image : url ( "http://www.elitepvpers.com/forum/images/item_slider.png" ); background - repeat : no - repeat ; background - position : top left ; font - weight : 100 ; height : 75px ; font - size : 15px ; line - height : 71px ; text - indent : 30px ; color : #dbde8b; text - shadow : 1px 1px 10px #afb38c, 0px 1px 5px #000000, 0px - 3px 5px #000000, 0px 3px 5px #000000, - 1px 0px 5px #000000; } div #itemslider-mid{ background - image : url ( "http://www.elitepvpers.com/forum/images/item_slider.png" ); background - repeat : repeat - y ; background - position : top right ; min - height : 85px ; } div #itemslider-mid ul{ margin - left : 55px ; list- style - type : none ; } div #itemslider-mid li{ float : left ; margin : 0px auto ; cursor : pointer ; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } div #itemslider-mid li:hover{ opacity : 0.8 ; } div #itemslider-bot{ background - image : url ( "http://www.elitepvpers.com/forum/images/item_slider.png" ); background - repeat : no - repeat ; background - position : bottom left ; height : 35px ; } /* -------------------------------------------------------------- */ /* ---- SIDEBAR ----------------------------------------- */ div #sidebar{ width : 315px ; float : left ; } div #sidebar h2{ background - image : url ( "http://www.elitepvpers.com/forum/images/sidebar.png" ); background - repeat : no - repeat ; background - position : top left ; font - weight : 100 ; height : 75px ; font - size : 15px ; line - height : 71px ; text - indent : 30px ; color : #dbde8b; text - shadow : 1px 1px 10px #afb38c, 0px 1px 5px #000000, 0px - 3px 5px #000000, 0px 3px 5px #000000, - 1px 0px 5px #000000; } div #sb-mid{ background - image : url ( "http://www.elitepvpers.com/forum/images/sidebar.png" ); background - position : top right ; background - repeat : repeat - y ; } div #sb-mid p{ text - align : left ; margin - left : 30px ; width : 250px ; font - size : 14px ; color : #79603d; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #sb-bot{ background - image : url ( "http://www.elitepvpers.com/forum/images/sidebar.png" ); background - position : bottom left ; height : 43px ; } /* -------------------------------------------------------------- */ /* ---- BUTTONS ----------------------------------------- */ a . buttons { width : 315px ; display : block ; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } a . buttons : hover { opacity : 0.6 ; } a #dl{ background - image : url ( "http://www.elitepvpers.com/forum/images/buttons.png" ); background - repeat : no - repeat ; background - position : top center ; height : 102px ; } a #com{ background - image : url ( "http://www.elitepvpers.com/forum/images/buttons.png" ); background - repeat : no - repeat ; background - position : bottom center ; height : 102px ; } /* -------------------------------------------------------------- */ /* ---- CONTENT ----------------------------------------- */ div #content{ width : 602px ; float : right ; } div #content h2{ background - image : url ( "http://www.elitepvpers.com/forum/images/content.png" ); background - repeat : no - repeat ; background - position : top left ; font - weight : 100 ; height : 83px ; font - size : 15px ; line - height : 80px ; text - indent : 30px ; color : #dbde8b; text - shadow : 1px 1px 10px #afb38c, 0px 1px 5px #000000, 0px - 3px 5px #000000, 0px 3px 5px #000000, - 1px 0px 5px #000000; } div #con-mid{ background - image : url ( "http://www.elitepvpers.com/forum/images/content.png" ); background - repeat : repeat - y ; background - position : top right ; } div #con-mid p{ width : 550px ; text - align : left ; margin - left : 25px ; color : #524a3c; font - size : 13px ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #con_mid_con{ width : 550px ; text - align : left ; margin - left : 25px ; color : #524a3c; font - size : 13px ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } . news { background - image : url ( "http://www.elitepvpers.com/forum/images/news_1.png" ); background - repeat : no - repeat ; background - position : center ; width : 103px ; height : 89px ; margin - left : 20px ; float : left ; } div #con-bot{ background - image : url ( "http://www.elitepvpers.com/forum/images/content.png" ); background - repeat : no - repeat ; background - position : bottom left ; height : 41px ; } /* -------------------------------------------------------------- */ /* ---- INPUT ----------------------------------------- */ input [ type = "reset" ]{ background : url ( "http://www.elitepvpers.com/forum/images/btn.png" ); background - repeat : no - repeat ; background - position :- 125px - 3px ; width : 136px ; height : 48px ; border : none ; color : #cb9e69; font - size : 15px ; cursor : pointer ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } input [ type = "submit" ]{ background : url ( "http://www.elitepvpers.com/forum/images/btn.png" ); background - repeat : no - repeat ; background - position :- 6px - 3px ; width : 112px ; height : 48px ; border : none ; color : #cb9e69; font - size : 15px ; cursor : pointer ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; transition : opacity 0.5s ; - moz - transition : opacity 0.5s ; - webkit - transition : opacity 0.5s ; - o - transition : opacity 0.5s ; } input [ type = "text" ], input [ type = "password" ], select { background : url ( "http://www.elitepvpers.com/forum/images/input.png" ); background - repeat : no - repeat ; background - position : bottom ; width : 251px ; height : 49px ; border : none ; text - indent : 10px ; color : #aaa152; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } input [ type = "submit" ]: hover , input [ type = "reset" ]: hover { opacity : 0.6 ; } /* -------------------------------------------------------------- */ /* ---- FOOTER ----------------------------------------- */ div #footer{ background : url ( "http://www.elitepvpers.com/forum/images/footer.png" ); background - repeat : no - repeat ; width : 954px ; height : 133px ; margin : 0px auto ; } div #footer address{ font - size : 14px ; color : #bfbc6c; text - indent : 110px ; line - height : 130px ; font - style : Normal ; text - shadow : 0px - 1px 1px #000000, 0px 1px 1px #000000, - 1px 1px 1px #000000, 1px 1px 1px #000000; } div #footer address a, div#footer address span{ text - decoration : none ; cursor : pointer ; color : #e2bf43; } div #footer address a:hover, div#footer address span:hover{ color : #aaa152; } div #footer ul{ list- style - type : none ; float : right ; margin - top :- 75px ; margin - right : 130px ; } div #footer ul li{ float : left ; color : #bfbc6c; padding - right : 2px ; font - size : 14px ; } div #footer ul li a{ color : #e2bf43; text - decoration : none ; } div #footer ul li a:hover{ color : #aaa152; }
Das ist auch ein Problem.
Schck mir mal bitte den Link zu deiner Homepage per PN, zur Zeit können wir nicht wissen was wir ändern sollen; Werde dir dann versuchen zu helfen.
03/03/2014, 15:33
#6
elite*gold: 150
Join Date: Jan 2014
Posts: 11,338
Received Thanks: 3,780
Quote:
Originally Posted by
Shy!
Schck mir mal bitte den Link zu deiner Homepage per PN, zur Zeit können wir nicht wissen was wir ändern sollen; Werde dir dann versuchen zu helfen.
Ich benutze mein eigenen Spendescript
.
All times are GMT +2. The time now is 19:53 .