http://brdoco.com/gallery2
I'm trying to integrate gallery2 into my site... and have got everything except for one little thing. I want the gbTopFlag and gbBottomFlag div's to be 100% width. I've modified the borders for gbTopFlag/gbBottomFlag (red) and gsFooter (gray) to make it easier to see.
In /gallery2/templates/local/layout.css.php I added the width attribute to
.gbTopFlag, .gbBottomFlag {
margin: 0;
padding: 4px 0 4px 0;
width: 100%;
}
but nothing happens. The gbTopFlag/gbBottomFlag width's still aren't 100%. Am I missing a style somewhere?
Thanks!
brian
Posts: 808
I bet it's a nested <div> issue. The easy fix would be to give the width value a pixel value instead of a percent.
Posts: 3
In the file /gallery2/templates/layout.css.php i made changes to the following two sections to remove the sidebar in my layout based on the MatrixLayout!
#gsSidebar, #gsAdminSidebar {
float: left;
width: 20%;
}
#gsAlbumContents, #gsAdminContents, #gsOtherContents {
float: left;
width: 78%;
}
//Mattias