apyash
Here are CSS file changes you will need to get 90% or 100% of your screen:
The line number may not match, also make sure to do backup and keep note, because when you upgrade these settings will be wiped and you will need to re-add it
// Admin Screen
// /scp/css/scp.css line: 127
/* changed This will change whole Width of page
width: 960px to 90%
*/
#container {
width:90%;
margin:0 auto 20px auto;
}
/* added line:517
width: 100%;
*/
table.list {
clear: both;
background: #ccc;
margin: 2px 0;
border-bottom: 1px solid #ccc;
width: 100%;
}
/* changed Overflow Menu line: 727
width: 960px to 90%
*/
.jb-overflowmenu {
position: relative;
height:35px;
width: 90%;
}
/* added width: 100% line:1128
*/
table.list {
clear:both;
background:#ccc;
margin: 2px 0;
border-bottom: 1px solid #ccc;
width:100%;
}
/* added width:100% Line:1287*/
.form_table {
margin-top:3px;
border-left:1px solid #ddd;
border-right:1px solid #ddd;
width: 100%;
}
/* added width: 100% line:1474*/
.ticket_info {
background:#F4FAFF;
width:100%;
}
============= Cleint Screen: ==============
// assets/default/css/theme.css?9ae093d:89
// added width: 100%
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
// /assets/default/css/theme.css?9ae093d:292
// Change width from 840px to 90%
#container {
background: #fff;
width: 840px;
margin: 0 auto;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
///assets/default/css/theme.css?9ae093d:795
// added width 100%
#ticketTable {
border: 1px solid #aaa;
border-left: none;
border-bottom: none;
width: 100%;
}
============= this might need to apply to media size only ============
https: /assets/default/css/theme.css?9ae093d:339
// added float: left;
#nav li {
margin: 0;
padding: 0px;
list-style: none;
display: inline;
float: left;
}
https:/assets/default/css/theme.css?9ae093d:108
// float:left;
}
h1, h2, h3, h4, h5, h6, form, fieldset {
margin: 0;
padding: 0px;
float: left;
}