2015-02-09 38 views
1

我遇到與我嘗試的所有日期選擇器相同的問題。它會在j查詢中加載宏,當我點擊輸入框時,它會變大。它走出集裝箱,我嘗試了所有解決方案,但都沒有成功。日曆盒的尺寸合適,但日期和日期已突破頁面。誰能幫我。日期選擇器對於頁面來說太大

 <meta name="viewport" content="width=device-width" /> 
    <link href="media-styles.css" rel="stylesheet" type="text/css" /> 
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> 

的.ui-插件{字體家庭:龍力大,龍力三世,Arial字體,無襯線; font-size:0.6em; }

</head> 
<body> 
    <noscript> 
     For full functionality of this site it is necessary to enable JavaScript. 
     Here are the <a href="http://www.enable-javascript.com/" target="_blank"> 
     instructions how to enable JavaScript in your web browser</a>. 
    </noscript> 
    <?php include("includes/header.php"); ?><!-- banner_area External File-->    
    <div id="container"><!--Opening Container --> 
      <div class="register_login_upload_content"><!-- maincontent--> 
      <div class="titleheading"><h3>Upload a Coupon</h3></div><!--Opening submit Header --> 
      <div id="uploadformarea"><!-- Opening submit Area --> 
      <form method="post" id="couponform" > 
       <input type="hidden" name="companyid" id="user_id" value="<?php echo $id; ?>" /> 
        <label for="adtitle">Choose a title for Coupon:</label> 
        <input type="text" name="adtitle" id="titleinput" />   
        <label for="desc">Description:</label> 
        <textarea name="desc" id="coupondesc"></textarea><br />       
        <label for="enddate">Select expiry date: </label> 
        <input type="text" class="datepicker" name="enddate" id="couponEndDate"/>       

        <input type="hidden" name="uploadtype" value="create_coupon" />      
        <input type="submit" name="createcoupon" id="createcoupon" value="Create" class="submit-button"/> 
       </form><!-- End of submit Form --> 

回答

相關問題