Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Stormwolfe Posted May 4, 2018 Posted May 4, 2018 Good day and my apologies if I am posting this question in the wrong forum. Prior to upgrading to 4.3, I was using this code in our theme's custom.css to make the profile cover image transparent. #elProfileHeader{ background-color: transparent;} } Since the upgrade, it has stopped working. I contacted the theme's developer and they thought the issue was a missing end brace. I added that, still no luck. I have the option to upload a cover image turned off for all user groups (even Admins). The default cover image is really awful with my site's theme. Is there something else that needs done to make the cover photo (image) go away? If so, could you give me the fix in Village Idiot terminology? I'm not a coder or developer of any kind. Any and all help is greatly appreciated.
opentype Posted May 4, 2018 Posted May 4, 2018 Post your site URL so the actual code can be inspected and a solution tested live.
Stormwolfe Posted May 4, 2018 Author Posted May 4, 2018 Sorry about that! I usually remember to add the URL http://www.sagaswildwest.com/
opentype Posted May 4, 2018 Posted May 4, 2018 Try: #elProfileHeader .ipsCoverPhoto_photo { display:none; }
Stormwolfe Posted May 4, 2018 Author Posted May 4, 2018 Getting closer - I think. That code removed the image (pattern), but there is still a solid color background. I tried combining the original code... This #elProfileHeader{ background-color: transparent;} } Still didn't work. This is what I have using only the code you provided.
opentype Posted May 4, 2018 Posted May 4, 2018 Okay. Then this: #elProfileHeader .ipsCoverPhoto_photo { display:none; } #elProfileHeader .ipsPageHead_special { background-color: transparent; } #elProfileHeader .ipsCoverPhoto_container { background-color: transparent; }
Stormwolfe Posted May 4, 2018 Author Posted May 4, 2018 Still doesn't work. I cleared my browser's cache too, just in case. I appreciate the help though.
opentype Posted May 4, 2018 Posted May 4, 2018 Take 3 … #elProfileHeader .ipsCoverPhoto_photo { display:none; } .ipsPageHead_special { background-color: transparent; } #elProfileHeader .ipsCoverPhoto_container { background-color: transparent !important; }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.