My site is not public, I’m running it on xampp and can’t show you. Here is a screenshot:
View post on imgur.com
Each album is using 100% width, while I want them next to each other. I’m attaching the custom CSS that I use
#foogallery-album-1517 ul {
list-style-type: none;
background-color: transparent;
border: 2px dashed #000000;
}
#foogallery-album-1517 li a {
color: #000;
padding: 8px 16px;
text-decoration: none;
opacity: 0.5;
}
#foogallery-album-1517 li {
text-align: center;
border-bottom: 1px dashed #000;
}
#foogallery-album-1517 li:last-child {
border-bottom: none;
}
#foogallery-album-1517 li a.active {
background-color: transparent;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
color: black;
}
#foogallery-album-1517 li a:hover:not(.active) {
background-color: transparent;
color: #172D3A;
border-radius: 0px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
transition-duration: 0.5s;
opacity: 1;
}
If that’s not how albums are meant to look then perhaps there is some CSS conflict from importing my site’s CSS into the album page? Without the custom CSS above the album page functions the same way so the conflict must come from my main site’s CSS. I don’t know how “Responsive Album Layout” is supposed to look but I doubt that’s it. For me this is strictly a listing problem.