Hi,
When I put this code in Quick Css it displays thumbs dimension correctly 180×180
see url: http://fritzimages.com/blog/?s=camden
.search-result-counter img {
border-radius: 0!important;
}
.search-result-counter {
width: 180px;
height: 180px;
}
#top .template-search.content .entry-content-wrapper {
padding-left: 200px;
}
However, when I put this code into my custom.css file it displays the thumbs incorrectly very very small dimension.
/*12) Add thumbnail to search results */
.search-result-counter img {
border-radius: 0!important;
}
.search-result-counter {
width: 180px;
height: 180px;
}
#top .template-search.content .entry-content-wrapper {
padding-left: 200px;
}
/*
I have tried purging caches, and a lot of other ideas to fix the problem, but I am stumped.
Thanks for your help
Ed
Fritzimages.com
Hey Ed,
I opened your page today and I see all the rules from custom.css on top and working. I would suggest this few modifications to them in custom.css.
.search-result-counter {
width: 180px;
height: 180px;
margin: 0;
padding: 0
}
.search-result-counter img {
border-radius: 0!important;
min-width: 180px;
}
Let us know if you have any more questions.
Best regards,
Victoria
Hi Victoria,
I moved your code into custom.css and deleted the legacy code from quick.css. I am pleased to report that all is working well !
Thanks so much for the help and quick response.
All the best,
Ed
You can close this tix, thanks