I am using the free version of the LinkedIN feed. But I want it to look like it fits on my site with similar design, the style options available for the free version are very limited. Does the paid version offer more options? I am looking for basic stuff like adding a solid border around it, custom widths, custom thumbnail image size…
Hi there and welcome to the Community, @user37983 ![]()
The styling options available on the Free plan are the same as on the paid plans. So if you feel the built-in options don’t fully cover your case, we’ll be happy to help you with custom styling.
First, we recommend checking our CSS Codes category — there you can find a lot of ready-made solutions that might already fit what you’re looking for.
If you don’t find what you need, just describe all changes you’d like to make in detail, and we’ll gladly help you implement them!
Regarding the customizations you’ve already mentioned:
- Custom Width — you can easily set it on the Layout tab:
- Custom thumbnail size — are you referring to the post images (1) or link previews (2)? What custom size would you like to apply?
- Add a border
If you’d like to add a border to the widget container, this code will do the trick:
.es-grid-layout {
border: 2px solid #000000;
border-radius: 13px;
}
In case you want to add a border to each post, please use another code:
[class*="CardContainer-sc"] {
border: 2px solid #000000;
border-radius: 13px;
}
Select the needed code and add it to the Custom CSS field on the Style tab of your widget’s settings ![]()

