Posted - 09/18/2022 : 13:35:39
This is the CSS for the search box in the /css/style.css .topsearchWrap {} .top_search { position:relative; padding-right:60px; box-sizing:border-box;} .top_search Input { margin:0px; padding:5px; border:1px solid #cccccc; height:35px; box-sizing:border-box; font-size:12px; color:#999999; font-style:italic; width:100%;} .top_search Input[type=submit] { position:absolute; right:0px; top:0px; margin:0px; padding:5px; border:1px solid #cccccc; border-left:0px; height:35px; width:60px; cursor:pointer;} As you can see it is set to 100% wide. I think what is limiting you is the "size" setting for the box itself. If you look at your main.dwt, find <div class="col-5 topsearchWrap"> <div class="top_search"> <form method="post" action="search.asp" id="search_mini_form"> <input type="hidden" name="posted" value="1"> <input type="text" class="search_look" value="" name="stext" id="search" autocomplete="off" placeholder="What are you looking for?" size="500"> <input type="submit" value="Search"> </form> </div> </div> I would suggest either changing the 500 I highlighted in red or simply remove it. MarshallCENLYT Productions - ms designs Affordable Web Design Custom Ecommerce Designs Responsive Websites Cenlyt.com
|