-
- alvinnw

-
Total Posts: 18
Joined: 2013-01-10
|
Siggi_Schmitz - 25 February 2013 02:21 AM When you want to change the css, you have to know the names or id`s from the elements...you can look in the source code from the page or use firebug, it`s very simple, trust me. Firebug also shows you the path to the css - files which were used, so you can simple add your own style or change an existing.
I may not need to entire css to be changed. It directs me to the main text color, which controls the entire site’s text.
This is the code in that area;
==================================================
<div id="checkout-payment-method-load" class="” style="width: auto; height: auto;">
<dl class="sp-methods">
<dt>
<input id="p_method_moneybookers_acc" class="radio" type="radio" onclick="payment.switchMethod(’moneybookers_acc’)" title="Credit Card : Visa and Mastercard Only (For AMEX/Discover, select the PayPal option, you don’t need a PayPal account)” name="payment[method]" value="moneybookers_acc" autocomplete="off">
<label for="p_method_moneybookers_acc">Credit Card : Visa and Mastercard Only (For AMEX/Discover, select the PayPal option, you don’t need a PayPal account) </label>
</dt>
=========================================================
I would like to control what comes out after the input tag only.
|