Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .list::before {
- /* position: relative; */
- float: left;
- height: 280px;
- width: 1209px;
- content: "";
- background-image: url('http://i.minus.com/ibg1zBIseoM4MN.png');
- left: 170px;
- }
- Because Anilist doesn't have ids for the lists, you'll have to do this to set a background image for each table:
- .list:nth-of-type(1)::before {
- /* position: relative; */
- float: left;
- height: 280px;
- width: 1209px;
- content: "";
- background-image: url('http://i.minus.com/ibg1zBIseoM4MN.png');
- left: 170px;
- }
- .list:nth-of-type(2)::before {
- /* position: relative; */
- float: left;
- height: 280px;
- width: 1209px;
- content: "";
- background-image: url('http://i.minus.com/ibg1zBIseoM4MN.png');
- left: 170px;
- }
- And so on, until you get to the end.
- To hide the titles, you can use
- h3 {
- display: none;
- }
- or
- h3 {
- visibility: hidden;
- }
- display: none; will make it no longer take up space.
- You may have to edit the image to fit your list, or your list to fit the images.
- You can resize your lists and shift them like so:
- .list { /*Edit width */
- width: ABCDpx; /* Default is 720px */
- }
- #lists { /* Shift lists */
- margin-left: XYZpx; /* Default is 260px */
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement