Hiya,
Trying to get the images on the last.fm widget to be centering, tried looking in the code for align, but the only thing i could find it is centered, so not sure how to go about it.
Any help would be create
bump
You still need help? Play some tracks so we can see them and style the covers properly. Without seeing them, I can only guess what it'll look like.
But are you doing the css? If you look at the very bottom of your main stylesheet, you'll see:
li#lastfm-records.widget.widget_lastfmrecords ol{
margin-right: auto;
margin-left: auto;
width: 246px;
padding: 0;
padding-left: 25px;
}
This doesn't select anything. At least not until you have record covers, I'm guessing. In any case, try simplifying that selector down to just:
#lastfm-records {
margin: 0 auto;
width: 246px;
padding: 0;
text-align:center;
}
I also added text-align: center so that might be all you need, but again, you'll need to play with it when there are albums.
This topic has been closed to new replies.