Hi there! I'm so sorry I didn't see your post until you pinged me :( I must have missed your post!
body {
background-image: url('https://i.imgur.com/SMOE135.png');
background-position: center 110px;
background-repeat: no-repeat;
}{ width: 100%; margin: 0!important; }I cropped the background image so that it's only the background that's in the image, and then used CSS to position it (you might want to save the image on your own account, because I occasionally purge my imgur images).
the tc is probably changing based on the scrollbar. on your computer, you probably have scrollbars to show always, which takes up some space and will push the ninth tc item to the next row so you're only getting eight per row. on your phone, scrollbars are usually invisible as you just swipe to scroll, so with no scrollbar to push the items around, they're taking up the full width of the tc box and you're getting nine per row. this can be adjusted by making the tc a little narrower and adding maybe 20px of padding on the right.
No worries at all ;; really appreciate you looking when I did ^-^ Thank you so much, I never thought of doing that with background-position! I do have it saved, you're free to delete c: And thanks for checking the tc on different sizes!
Oh, that makes so much sense. o: I'd used right padding unsuccessfully the other day but I must've made a typo because it worked this time. :) Thank you!