Thanks Steve…
The form is located in a toggle box on the Welcome-Back page aka “Personal Homepage”.
You have to be logged in to see this page.
It is located about half-way down the page under the “New Listing Services” section..and the toggle box title is “Submit a Resource to the collectLinks Library”.
What I can say, after messing around with this most of yesterday…this is pulling in the .social a settings from the woo themes templates. I did try your suggestions about the [raw] tags but this does not fix the issue. I ended up using this css to fix the problem:
1. the .social a was displaying as inline-block and I changed it to:
.social a {
display: inline !important;
}
2. the weird images behind the remove button (only on the social media section)
#cn-form .cn-button-shell a {
background-image: none !important;
}
3. And to remove the colors from the add and remove buttons:
#cn-form .cn-button-shell.blue {
background-color: #FFF;
}
#cn-form .cn-button-shell.red {
background-color: #FFF;
}
I also did the update you sent out yesterday before making these css mods…but it did not help the issue.
Regards,
Will