Theme Author
Tom
(@edge22)
If you can link me to a page with the website profile line I can give you some more specific CSS which should fix it and keep the above CSS functioning.
Let me know 🙂
Here is a test profile showing the issue. As you can see, the other social media links are fine. It’s just the one.
http://www.writinggroove.com/members/testone/
Thank you for your help. 🙂
Theme Author
Tom
(@edge22)
Try this CSS:
.field_website:before {
display: block;
content: '';
}
I’ve tried putting this in my child theme, with no results.
Put it in the parent theme CSS, both directly before and directly after the CSS I mentioned. No success.
I assume I don’t replace anything in the CSS file with the CSS you posted? This is supposed to be a new addition? Just for kicks I tried replacing anyway. No success.
Any other ideas?
By the way, are you aware that this latest update causes the entire CSS file to format into one block paragraph without any of the CSS commenting?
Theme Author
Tom
(@edge22)
Try this instead:
.field_website:before {
display: block;
content: initial;
}
Adding the CSS into your child theme or a plugin like this is best: https://wordpress.org/plugins/simple-css/
The style.css file in the latest version is minified for performance – you shouldn’t ever have any need to go in there anyways.
If you want to study the CSS with commenting, you can open the style.unmin.css file.
I definitely prefer keeping all custom stuff to the child theme CSS. 🙂
Added this new try and the line in the profile has fallen in with the formatting of the other lines. Yay!
Thank you for your help!