Tagged: blog image
Hello Guys,
Ismael helpt me with this case: https://kriesi.at/support/topic/double-the-image-size-of-a-blog-style-single-author-small-preview/
Evertihing work fine but onlythe image on the archive is not diplayed correctly: http://www.enrecht.nl/category/algemeen/
Greets
.small-preview {
height: 162px;
left: 0;
line-height: 162px;
width: 162px;
}
#top .fullsize .template-blog .blog-meta {width: 162px}
than the preview images are 162px x 162px
the small preview allready changed – but left:0 fits better i guess
and if you like you can give a little border on the small preview image:
#top .fullsize .template-blog .big-preview a, #top .fullsize .template-blog .small-preview img {border: 2px solid #f07625}
because you have some images with white background.
And if you want in blog View a little more distance between Image and Text you can add margin-right to small-preview
.small-preview {
height: 162px;
left: 0;
line-height: 162px;
width: 162px;
margin-right: 25px
}
and last but not least : if you want to shift that little timeline (dashed) again to the middle of the image you had to configure:
.multi-big .post_author_timeline, .single-small .post_author_timeline {
border-right-style: dashed;
border-right-width: 1px;
height: 100%;
left: 80px;
position: absolute;
top: 0;
width: 1px;
}
with left positioning !
hm – i thoght i was helping Tim ? :wink :lol
Thanks for all the help @guenni007 !! Did all the changes! And Yigit thanks for the thanks ;)
And does one of you know how to turn of the light box for blog images?
Thanks again!
Greets Tim
Hey Tim! :)
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.blog-meta {
pointer-events: none;
}
Cheers!
Yigit
Thanks again!