Thumbnails without border possible? SOLVED
Yes, with firebug I see a bootstrap.min.css, but in the files of the JSN Pixel Pro template there is no bootstrap.min.css fo find.
I searched with the search-function of the explorer in the template-files:
Perhaps this css is generated live - I don't know - but it is not to find in the normal css-files of the template:
Therefore it is not possible for me to change the bootstrap.min.css directly - perhaps with editing some php-file; but for this I am not able.
Please Log in or Create an account to join the conversation.
You can add to your css:
.thumbnail {
border: none !important;
}
Please Log in or Create an account to join the conversation.
Thank You, with this code in my template.css the border disapears! Great!
But I see, there remains a shadow and a padding or margin around the thumbnail - and I want to have only the pure thumbnail. Have you a little css-code to stop the shadow and the padding around the thumbnail too?
Then I would be very happy.
Please Log in or Create an account to join the conversation.
.thumbnail {
padding:0 !important;
border:none !important;
-webkit-box-shadow:none !important;
-moz-box-shadow:none !important;
box-shadow:none !important;
}
Please Log in or Create an account to join the conversation.
Thank You very much - now all is Ok! SUPER!
Have a good weekend!
Frank
Please Log in or Create an account to join the conversation.