Hello,
I can’t say for sure what you need because I don’t have your existing css to go by but this should get you close.
Add this to your active theme’s style.css file and adjust as neccessary
.simple-links-shortcode-item{
list-style: none;
margin: 0 0 15px;
width: 100%;
clear: both;
float: Left;
}
.simple-links-shortcode-item img{
float: left;
padding: 0 10px 0 0;
}
Also be sure to use the remove_line_break in the shortcode like so
[simple-links show_image="true" image_size="thumbnail" description="true" remove_line_break="true"]
Thank you. I tried that. It didn’t change anything… http://thewriterintheworld.com/alumni-creations/
Thoughts?
Theme is Spacious.
Because you are using a widget instead of a shortcode in the content, the only way to target the items separately is to add the .entry-content class like so.
.entry-content .simple-links-item{
list-style: none;
margin: 0 0 15px;
width: 100%;
clear: both;
float: Left;
}
.entry-content .simple-links-item img{
float: left;
padding: 0 10px 0 0;
}
I put that in the theme CSS? Sorry for being dense.
Yes. Same as before, just remove the css added a couple steps ago
Yay!! It worked. Thank you SO much for your quick help. 5 stars for you!