Quote Originally Posted by lat9 View Post
@ShopVille, you'll need to edit the /special_login.php file (it's in the "root" of your store's file-system), towards the bottom of the file.

Find the following section
Code:
<div class="d_w">
  <div class="d_t">Login to continue ...</div>
  <form action="" name="i_l" method="POST" target="_self">
    <div class="d_p">Password:######<input type="password" name="pwd" size="35" value="" />######<input type="submit" value="Login" /></div>
and add a <p></p> grouping to contain your custom text:
Code:
<div class="d_w">
  <p>Any questions?  Call xxx yyy-zzzz for more information.</p>
  <div class="d_t">Login to continue ...</div>
  <form action="" name="i_l" method="POST" target="_self">
    <div class="d_p">Password:######<input type="password" name="pwd" size="35" value="" />######<input type="submit" value="Login" /></div>
Thanks this was helpful!