I made some tests and switch on Facebook Sharing Link on Portfolio page. After I switched it off frame still is dispayed. How to fix it ?
Hello @krzysztofb50,
Thanks for asking. 
I checked the URL’s (link shared in secure note) that assigned under licence manager section but I am unable to locate the page on which you have displayed portfolio items. I also see that you are using latest version of X Theme and Cornerstone. Can you please share the exact page URL for us to take a closer look. I tested turning of Facebook icon on my local setup and it’s working fine. Can you please recheck again under X > Theme Options > Portfolio > Sharing. Please try clearing browser cache and try again.
In case if it’s still not working then please try testing for plugin conflict as some scripts might be creating issues. You can do that by deactivating all plugins and reactivating one at a time to narrow down the plugin that’s causing the issue.
You have one more option to hide using CSS (not a great solution though) under X > Theme Options > CSS:
.x-entry-share {
display: none;
}
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Thanks.
Hi There,
Thanks for the link.
Please add this CSS to your theme option -> Global CSS and let us know how this goes.
.x-portfolio .entry-extra {
display: none;
}
.x-portfolio .entry-info {
width: 100%;
float: none;
}
Hope this is something you are looking for.
Thanks
Almost. One box still exist
Please replace the CSS with this.
.x-portfolio .entry-extra, .single-x-portfolio .entry-featured {
display: none;
}
.x-portfolio .entry-info {
width: 100%;
float: none;
}
Thanks
Thats it. Thank you !
Glad we could help.
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.