These changes to the site code have made my pet profiles vanish apart from the background color. It worked before all these changes and I don't know how to make my content appear again.
Example: Phinean
I'm guessing it has something to do with this section of the code because removing it takes me back to a default profile but the content will show up.
,,,,, footer, h2, h2 , h2, h2, a, , , {display:none;}
a {display: inline-block;}
ul { list-style-type: none }
li { list-style-type: none }
{position:absolute; top:0px; left:0px; margin:0px; padding:0px;}
,, {background:none; border:none; height:100% !important;}
{margin:0px; padding:0px;}
There must be something I need to add or change but I'm at a loss.
Try adding this { width: 1240px; height: 740px!important; overflow: hidden; }
thanks, that partially worked! On that profile it's visible now, but mostly cut off on the bottom.
[edit] I think I figured it out. I think it's because I have to change content to main-content ? That made it show up in full this time.
edit 2 Yep that's definitely what it was!
to
-content
Weird.
You should add that code at the end. Right now it's before another line of code which declares (and other divs) to be 100% height, which is why it collapses back into tininess. So if you add that code at the end or after the ",," thing, you should be fine :)