Plugin Author
Tom
(@edge22)
Same as the other topic, I’m not seeing the plugin on that page?
i’ve added the plug in back on now
it may be because of the size of my featured images (see other thread)
Plugin Author
Tom
(@edge22)
this seems to have helped.
can i use custom css for padding in the containers too?
I added some padding
.wp-show-posts {
font-size: 14px;
padding: 10px;
}
.wp-show-posts-entry-title {
font-size: 20px;
padding: 10px;
}
This seems to have fixed the title but the text and the date still seem to be unaffected?
I’m guessing “wp show posts entry title” is the header/title and “wp show posts” is the text?
Plugin Author
Tom
(@edge22)
You can adjust the entry meta with this selector:
.wp-show-posts-entry-meta
i added
.wp-show-posts-entry-meta {
padding: 10px;
}
to the custom css but it still doesn’t seem to have changed the padding
https://s32.postimg.org/dlde03fvp/screenie.png
did that change the spacing for the date?
Plugin Author
Tom
(@edge22)
What area are you trying to add padding to?
Plugin Author
Tom
(@edge22)
Oh, well why not add padding to the entire inside container?
.wp-show-posts-inner {
padding: 10px;
}