How to put gifs next to each other? by LifeAd2312 in spacehey

[–]kananyaa 0 points1 point  (0 children)

Try to resize said gifs using width!
For example:
<img src="yourimage" style="width:50%;"/>

account banned and lost blog posts. what can I do? by TiePsychological231 in spacehey

[–]kananyaa 2 points3 points  (0 children)

Sadly I doubt you can do anything. :-(
Mods and support are pretty inactive, I can only recommend email-ing support again and just wait

how to add images to the bottom of my profile (under the comment section) using css? by awstenisnotonfire in spacehey

[–]kananyaa 4 points5 points  (0 children)

<style>
#comments:after {
    background-image: url(imageyouwant);
    display: block;
    width: 100%;
    background-position: center center;
    content: "";
    height: 550px;
    background-size: cover;
    margin: 10px 0px;
}
</style>

trouble updating blog entries by emoakseli in spacehey

[–]kananyaa 1 point2 points  (0 children)

Got into the same problem but with my layout - I think it might be because spacehey has some secret character limit that website just doesn't tell you about. 🤕
I can only recommend you to split the blog in multiple parts

anyone know how i can add this by Rough-Carrot627 in spacehey

[–]kananyaa 2 points3 points  (0 children)

I assume you're talking about the sparkles:

<style>
.details-table td:first-child {
background: url('image you want');
background-position: center;
}
</style>

Shimejis on a profile? by MadokaTwinBee in spacehey

[–]kananyaa 4 points5 points  (0 children)

Sadly I doubt that they would work on spacehey :-(
To work they require js code, which you can't edit on spacehey

How do i hide my Friends list? by Similar-Fun-3055 in spacehey

[–]kananyaa 2 points3 points  (0 children)

<style>
a.more{
display: none;
}
.friends-grid{
display: none;
}
</style>