It's mostly a css change, but it will still render the left column
unless you remove that component as well. The quickest way to go it
would be to go to the css/player/desktop/stylesheet.css
.columnleft {
--- position: relative;
--- display: block;
float: left;
--- height: auto;
--- width: 365px;
--- z-index: 1;
}
.browsecontainer {
--- position: relative;
--- width: 365px;
--- height: auto;
--- background-color: #CCC;
}
.songlistcontainer {
position: relative;
height: auto;
--- margin-left: 365px;
overflow-x: hidden;
overflow-y: scroll;
}
where "---" is a line to remove/comment
if you want to stop the left bar from loading, go to the apps/client/
modules/player_desktop/templates/indexSuccess.php and comment these
lines
/*
<div class="columnleft" id="columnleft">
<div class="browsecontainer">
<?php include_partial( 'genre_browse',
array( 'title'=>'Genres', 'element_id' => 'browsegenre', 'list' =>
$genre_list ) ) ?>
<?php include_partial( 'library_browse',
array( 'title'=>'Artists', 'element_id' => 'browseartist',
'list_template' => 'list_artists', 'list' => $artist_list ) ) ?>
<?php include_partial( 'library_browse',
array( 'title'=>'Albums', 'element_id'=>'browsealbum', 'list_template'
=> 'list_albums', 'list' => $album_list ) ) ?>
</div>
</div>
<div class="columnright" id="columnright">
<div class="songlistcontainer" id="songlistcontainer">
<?php include_partial( 'list_songs' ); ?>
</div>
</div>
</div>
*/
Once you do this, type
./symfony cc
to clear the css and html cache.
hope that helps in the mid term,
-Rich