Viewing 14 replies - 1 through 14 (of 14 total)
  • Plugin Author ollybach

    (@ollybach)

    got a link ?
    sounds more like a theme issue as it works just fine as is on wp4.0

    Thread Starter Stephan Soderberg

    (@stesod)

    I’m on a localhost, maybe it’s a theme conflict. Seems like it’s a css issue, cuz css don’t work. I soon put it on server. I’l come back with the link then, ok.

    cheers/Stephan

    Plugin Author ollybach

    (@ollybach)

    >cuz css don’t work.

    that would explain it

    also make sure that “Include CSS: include frontend css that came with this plugin (untick if you want to provide your own styles somewhere else)” is enabled in settings->itunes lookup widget ->main options screen

    Thread Starter Stephan Soderberg

    (@stesod)

    Well, sorry to say but either way it’s still the same. When untick it changes only slightly for the good, and the cover is still to small.

    Plugin Author ollybach

    (@ollybach)

    can’t do/suggest anything without link

    Thread Starter Stephan Soderberg

    (@stesod)

    I know ?? moving the site to a other server tomorrow or so.
    Then I come back with a link and login if you need.

    /S

    Plugin Author ollybach

    (@ollybach)

    ok. just a link will probably do …i’ll standby so to speak..

    Thread Starter Stephan Soderberg

    (@stesod)

    Hi again,
    so here’s the url: https://veronicakeding.com/

    look at the left footer widget ??

    Plugin Author ollybach

    (@ollybach)

    your theme does two things (both of which dont make much sense to me in that combination, but what do i know):

    a)

    .footer-col h4 {
    	/*other stuff*/
    	margin-bottom: -30px;
    	/*other stuff*/
    }

    which you’ll find when taken out will not only sort out the itunes-lookup-widget title but also automagically suddendly show your “MY FAVORITE ALBUM” title over one of your other widgets….

    b)
    because they had/have a -30px margin on the h4 elemnt, they probably noticed that suddenly the “SOUNDCLOUD” title disappeared, so they did this:

    .widgets-col{
    		margin-top: 49px
    	}

    to counteract this to end up with a 19px margin

    however, the -49px is also applies to a bunch of other elements, so just taking it out there might not be the answer (although i do question that whole approach to start off with)

    i would probably do this (or ask them to fix this)
    add somewhere :

    .footer-col h4 {margin-bottom: 0px !important;}/*or have some margin if you want, just not negative*/
    .widgets-col{margin-top: 19px !important;}/*or also just 0 px or whatever looks good to you*/

    the above should sort your titles out in the footer.
    however, at the moment i cannot see the css of the widget being loaded. did you turn that off ?
    (this will/should sort out the layout of the rest of the widget)

    Plugin Author ollybach

    (@ollybach)

    PS:
    you could also do

    #footer .widgets-col{margin-top: 19px !important;}

    so you can be sure that style change only applies to the footer.

    either way , this is just a css issue of your theme. nothing to do with the itunes widget

    Thread Starter Stephan Soderberg

    (@stesod)

    Awesome answer! swift and quick Really good support! THANK!

    One tiny question only, is the thumbnail default from iTunes? feels a bit too small ??

    cheers/Stephan

    I giv U *****

    Plugin Author ollybach

    (@ollybach)

    >is the thumbnail default from iTunes

    ‘fraid so (well, kind of, see below).
    it’s this one that is being used in your case (i.e a 60×60 img)

    https://a3.mzstatic.com/us/r30/Music/v4/ae/31/18/ae31186f-3624-b00f-a96a-68b12405477e/0885014300304.60×60-50.jpg

    HOWEVER, the results from itunes also return a ~100×100 img.

    so if you want to use that instead, you could do the following:
    (i might make this a clickable option one day when i get the time, but for the moment there are no plans to do that ).
    be aware though, that you’d be hacking the core plugin files (just saying)

    so,
    open /js/scripts.min.js and do a simple search replace replacing all instances of artworkUrl60 with artworkUrl100

    in which case the 100×100 image would be used (you might have to tweak your css to go with that though, depends….)

    furthermore – if you do that – you might also want to change – near the top of the itunes-lookup-widget.php – the line that says

    Version: 0.6

    to something like

    Version: 100.0.6

    so you will never be told there’s an update available (until version 100.0.6+ anyway, by which time that comes around neither one of us will still care i would think ?? , as updating the plugin would mean losing those changes

    again, maybe one day i’ll make that an option, but i don’t think i’ll get around to do that one in the foreseeable future

    hope that helps

    Thread Starter Stephan Soderberg

    (@stesod)

    WOW I really appreciate that!

    You should sell wp-plugins pro on Envato market ??
    https://codecanyon.net/

    Thank’s again, have a nice day!

    Plugin Author ollybach

    (@ollybach)

    let’s just say it’s not the only plugin i built…:)

    btw, although i appreciate the hint regarding codecanyon et al , I don’t quite agree with their pricing structure of taking a 55% cut for work they don’t do….but that’s a rant for a different day ??

    either way , glad the above helps you out somewhat

    PS: appreciate the review too

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Layout’ is closed to new replies.