ch4rlie Posted November 22, 2014 Share Posted November 22, 2014 So I am a complete newb at PHP coding and need help. Here is the form I am trying to modify... http://i.gyazo.com/430a43e1de5629e2ccb8a386f177c23e.png I am trying to make the black border fill most of the screen rather a little bit. This is the code for the whole box. <div id="app" class="col-md-5"> <div class="panel panel-default"> <div class="panel-heading"> <h1 class="panel-title">Search Box</h1> </div> <div class="panel-body"> <form id="search" data-validate="parsley" class="form-horizontal" role="form" /> <div class="form-group"> <label for="url" class="col-lg-2 control-label">URL</label> </div> </div> <div class="error-container alert alert-danger"> </div> <div class="form-group"> <div class="col-lg-offset-2 col-lg-10 text-right"> <button id="crawl" type="submit" class="btn btn-primary btn-lg">Search <span class="glyphicon glyphicon-search"></span></button> </div> </div> </form> </div> </div> </div> Please tell me how. Thanks! Link to comment https://forums.phpfreaks.com/topic/292641-need-a-little-help/ Share on other sites More sharing options...
Ch0cu3r Posted November 22, 2014 Share Posted November 22, 2014 Whats this got to do with PHP? This is a CSS issue. Moved to CSS Help Link to comment https://forums.phpfreaks.com/topic/292641-need-a-little-help/#findComment-1497325 Share on other sites More sharing options...
ch4rlie Posted November 22, 2014 Author Share Posted November 22, 2014 Whats this got to do with PHP? This is a CSS issue. Moved to CSS Help Sorry I told you I was a newb -.- Link to comment https://forums.phpfreaks.com/topic/292641-need-a-little-help/#findComment-1497326 Share on other sites More sharing options...
NotionCommotion Posted November 22, 2014 Share Posted November 22, 2014 body { background-color: black; } Link to comment https://forums.phpfreaks.com/topic/292641-need-a-little-help/#findComment-1497327 Share on other sites More sharing options...
NetKongen Posted November 24, 2014 Share Posted November 24, 2014 Could you be a little more specific. You want to "make the black border fill most of the screen rather a little bit." What black border are you referring to? Normally you would not use a border to fill out the background of a page. Maybe you could make a drawing of what you want to achieve? NotionCommotion is suggesting to make the background on the whole page black - but I have a feeling that thats not what you are looking for? Link to comment https://forums.phpfreaks.com/topic/292641-need-a-little-help/#findComment-1497489 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.