Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Direct Bank Deposit font size

Direct Bank Deposit font size

Views: 8,249

Results 1 to 20 of 30
3 Jul 2007, 9:40 PM
#1
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Direct Bank Deposit font size

Just installed
Direct Bank Deposit
Zen Cart™ Version: v1.3.0
Version: 0.1
**Last Updated: ** Jun 06 2006
Author: Oz_jack

but the text is tiny on the check out almost un,readable

See below

Please use the following details to transfer your total order value:
Account No.: 115^^^^^
Sort Code: 30-^^-^^
Account Name: J W^^^^ter
Bank Name: Lloyds TSB
Swift Code:

Thanks for your order which will ship immediately we receive payment in the above account.

Can anyone tell me how to make the font bigger

Thanks :D

6 Jul 2007, 8:47 PM
#2
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Can anyone help on this? :no:

7 Jul 2007, 11:26 PM
#3
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Take it no one knows :wacko:
Never thought it would be this hard to get an reply :cry:

7 Jul 2007, 11:39 PM
#4
vera avatar

vera

New Zenner

Join Date:
Dec 2005
Location:
Wylie, Texas
Posts:
77
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Can you post a link?

7 Jul 2007, 11:50 PM
#5
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

7 Jul 2007, 11:59 PM
#6
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

test account

[email protected]
testing

8 Jul 2007, 12:33 AM
#7
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

This is the code
This bit in red is the bit that need editing to make this bit bigger
Account No.: 115^^^^^
Sort Code: 30-^^-^^
Account Name: J W^^^^ter
Bank Name: Lloyds TSB
Swift Code:


define('MODULE_PAYMENT_DIRBANK_TEXT_TITLE', 'Direct Bank Deposit');
define('MODULE_PAYMENT_DIRBANK_TEXT_DESCRIPTION',
'<BR>Please use the following details to transfer your total order value:<br><pre>' .
"\nAccount No.: " . MODULE_PAYMENT_DIRBANK_ACCNUM .
"\nSort Code: " . MODULE_PAYMENT_DIRBANK_BSB .
"\nAccount Name: " . MODULE_PAYMENT_DIRBANK_ACCNAM .
"\nBank Name: " . MODULE_PAYMENT_DIRBANK_BANKNAM .
"\nSwift Code: " . MODULE_PAYMENT_DIRBANK_SWIFT .

'</pre><p>Thanks for your order which will ship immediately we receive payment in the above account.');

8 Jul 2007, 5:35 AM
#8
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Direct Bank Deposit font size

hairx:

This is the code
This bit in red is the bit that need editing to make this bit bigger
Account No.: 115^^^^^
Sort Code: 30-^^-^^
Account Name: J W^^^^ter
Bank Name: Lloyds TSB
Swift Code:


define('MODULE_PAYMENT_DIRBANK_TEXT_TITLE', 'Direct Bank Deposit');
define('MODULE_PAYMENT_DIRBANK_TEXT_DESCRIPTION',
'<BR>Please use the following details to transfer your total order value:<br><pre>' .
"\nAccount No.: " . MODULE_PAYMENT_DIRBANK_ACCNUM .
"\nSort Code: " . MODULE_PAYMENT_DIRBANK_BSB .
"\nAccount Name: " . MODULE_PAYMENT_DIRBANK_ACCNAM .
"\nBank Name: " . MODULE_PAYMENT_DIRBANK_BANKNAM .
"\nSwift Code: " . MODULE_PAYMENT_DIRBANK_SWIFT .

'</pre><p>Thanks for your order which will ship immediately we receive payment in the above account.');
Tested.. code below is what is governing your problem

<div class="important"><BR>Please use the following details to transfer your total order value:<br><pre>
Account No.:  115****
Sort Code:   **-**-**
Account Name: J W*****
Bank Name:    *******
Swift Code:   </pre><p>Thanks for your order which will ship immediately we receive payment in the above account.</div>
<div class="important">
      </div>
```You maybe need to add extra entry to your current template's stylesheet for that div class
named important ..HTH
8 Jul 2007, 9:39 AM
#9
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Thanks M
I am new to all this & i would not have a clue where to start with the css file

There is noting in the mod that states this either :cry:

8 Jul 2007, 9:44 AM
#10
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Direct Bank Deposit font size

hairx:

Thanks M
I am new to all this & i would not have a clue where to start with the css file

There is noting in the mod that states this either :cry:
https://www.zen-cart.com/tutorials/index.php?article=43
Css faq/help at above url

8 Jul 2007, 9:50 AM
#11
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Have had a look but it does not tell me how to add to the stylesheet.

I need to find out where the new bit of code should go & what the code should be..

would it be anything like

important {
font-size: 1em;
} :cry:

8 Jul 2007, 10:02 AM
#12
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Direct Bank Deposit font size

hairx:

Have had a look but it does not tell me how to add to the stylesheet.

I need to find out where the new bit of code should go & what the code should be..

would it be anything like

important {
font-size: 1em;
} :cry:

/Sales/includes/templates/SexyPink/css/stylesheet.css
BACKUP FILE ABOVE FIRST, BEFORE CHANGING...
Find

.important {
 font-weight: bold;
 }

Change/TRY

.important {
 font-size: 1em;
 font-weight: bold;
 }

You may have to experiment with font size
of 1em and bear in mind, this .important css setting
may affect divs in other zencart files besides this
mod you have installed

8 Jul 2007, 10:15 AM
#13
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Thanks M
All sorted now

Had to take font-weight: bold; off
& made the font size 1.4em

I can now read it LOL

:clap::clap::clap::clap:

8 Jul 2007, 1:00 PM
#14
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Direct Bank Deposit font size

hairx:

Thanks M
All sorted now
Had to take font-weight: bold; off
& made the font size 1.4em
Great news.. thanks for posting suitable setting..
Well done!!

27 Oct 2007, 7:52 PM
#15
mate avatar

mate

New Zenner

Join Date:
Oct 2007
Location:
Tas
Posts:
2
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Thanks, I was having the same problem, your solution is appreciated

13 Apr 2008, 9:17 PM
#16
truevoice avatar

truevoice

New Zenner

Join Date:
Feb 2008
Posts:
28
Plugin Contributions:
0

Re: Direct Bank Deposit font size

I can seem to get this right cant find that code can someone help please

Thanks:blink:

13 Apr 2008, 9:29 PM
#17
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

What skin are you using?

13 Apr 2008, 9:50 PM
#18
truevoice avatar

truevoice

New Zenner

Join Date:
Feb 2008
Posts:
28
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Hi

By skin I think it is the same as template ?? blue_sky:blush:

13 Apr 2008, 9:55 PM
#19
hairx avatar

hairx

New Zenner

Join Date:
Jul 2007
Location:
Essex
Posts:
31
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Should be in
what ever folder you cart is in/includes/templates/blue_sky/css/stylesheet.css

14 Apr 2008, 6:47 AM
#20
truevoice avatar

truevoice

New Zenner

Join Date:
Feb 2008
Posts:
28
Plugin Contributions:
0

Re: Direct Bank Deposit font size

Hi did look in there but cant find that line at all or even anything close to it :blink: