Since BG-Saga is a fixed width theme, you can't stretch it, it will break layout. However, To accommodate more links, youcan make small changes in /Themes/bg-saga/css/index.php file so that it can accomodate more link :
like..find
.dropmenu li {
float: left;
font-weight: bold;
margin: 0;
padding: 0 0 0 2px;
position: relative;
}
Replace with :
.dropmenu li {
float: left;
font-weight: bold;
margin: 0;
position: relative;
}
Also find :
.dropmenu li a.firstlevel {
padding: 12px;
}
Replace with :
.dropmenu li a.firstlevel {
padding: 6px;
}
You can change 6px to something like 8px also , or even less..
After uploading file, refresh your page and see if that works, it should create room for more navigation bar items.
Also, I have plan to make this theme Fluid widht also in future.