When my credit card gets declined, it sends back to payment step 2 with a tiny text saying "your credit card was declined..."
-basic white text over normal background color (black)
-it is at the utmost top of the page above everything!
-Version 1.3.8
-This is from a gateway services module for my CC purcahses
-- Below is (some of) the source code I get back with the page that has the error message at the top of it


Wondering how I can make this bigger and maybe even add a red background to the message

HTML Code:
****There is Some Code Above This*****
function couponpopupWindow(url) {
  window.open(url,'couponpopupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=450,height=320,screenX=150,screenY=150,top=150,left=150')
}
function submitFunction($gv,$total) {
  if ($gv >=$total) {
    submitter = 1;	
  }
}

function methodSelect(theMethod) {
  if (document.getElementById(theMethod)) {
    document.getElementById(theMethod).checked = 'checked';
  }
}

//--></script>
</head>

<body id="checkoutpaymentBody">

<div id="mainWrapper">

Your credit card was declined. Please try another card or contact your bank for more info.

<!--bof-header logo and navigation display-->

<div id="headerWrapper">
<!--bof-navigation display-->
<div id="navMainWrapper">
<div id="navMain">
*******There Is More Code Below This*******