I'm using an artist page as the about page. would like to do either one of two things.
1) - make the page banner image responsive -- ideally be able to use another image on phone or hide the image all together.
OR
2) - was going to create a new page that looks something like the "artist template" --- BUT really like the small iron audio music player that is used for the artist pages - not sure if its possible to add that player to a page.
I dont understand your request. If we increase the album image size to 500 X 500, this will not lines up with the playerlist height. Here how it looks now https://d.stage.droplr.com/free/i/mF3NpB.
If you want to try, please go to wp-admin>theme options>custom css/js And add this to the custom css field
Hmm...the album does not look like that on my screen. its smaller...but I'm using a laptop at the moment. I'll try the code...but will probably just leave it. seems to work great with 7 or fewer tracks but a little out of whack (on my screen at least) with more.
is there a way to filter blog posts in list view by categories?
Hi John,
You can use the native wordpress post archive pages as http://www.gbrecords.ca/TuneTown/category/general/
To reach those page you have to use the url "http://www.gbrecords.ca/TuneTown/category/" + the post category name
Thanks,
Alexandre from the Sonaar.io Crew
thank you, that worked.
I have 2 more questions.
I'd like to resize the album image from this player to 500px x 500px so it lines up with the playlist height.
http://tunetownjazz.com/tune-town-home/
here's a trickier one
http://tunetownjazz.com/artist/tunetown/
I'm using an artist page as the about page. would like to do either one of two things.
1) - make the page banner image responsive -- ideally be able to use another image on phone or hide the image all together.
OR
2) - was going to create a new page that looks something like the "artist template" --- BUT really like the small iron audio music player that is used for the artist pages - not sure if its possible to add that player to a page.
thank you
Hi,
I dont understand your request.
If we increase the album image size to 500 X 500, this will not lines up with the playerlist height.
Here how it looks now https://d.stage.droplr.com/free/i/mF3NpB.
If you want to try, please go to wp-admin>theme options>custom css/js
And add this to the custom css field
.home .iron-audioplayer .album .album-art {
max-width: 500px;
}
The artist audioplayer is not available for now. To change the image banner on small device you can also use a css code:
/*Tablet*/
@media screen and (max-width: 769px) {
.postid-1196 .page-banner-bg {
background: url(image-url.jpg);
}
}
/*Mobile*/
@media screen and (max-width: 767px) {
.postid-1196 .page-banner-bg {
background: url(image-url.jpg);
}
}
Thanks,
Alexandre from the Sonaar.io Crew
Hi
Hmm...the album does not look like that on my screen. its smaller...but I'm using a laptop at the moment. I'll try the code...but will probably just leave it. seems to work great with 7 or fewer tracks but a little out of whack (on my screen at least) with more.
the code for the artist page worked great.
thank you
You are welcome
Thanks,
Alexandre from the Sonaar.io Crew