Bioshock Manor
12:58:12 Storm
hah same
Angels angels
12:58:08 [1k brindles] Angel
DD
I know I couldn't find the log in boxes for a minute lo
Dash and Duchess
12:57:30 DD
Storm, Gosh i hope not xD I prefer HEEs layout 100x more than WP
Golden Sunrise
12:56:58 Gold(en) | Sun
What happend to the sign in page? Oo I'm so confused lol
Bioshock Manor
12:56:48 Storm
Wonder if the game will be updated as well
Embervale Acres
12:56:44 Solar Phoenix
because of chat I see two horse butts XD
Elite Perfection
12:56:04 EP
Same Grimm. LOL Love it!
ThreeLittleBirds
12:56:04 
I need 8 female names that ain't used lol
Grimm Acres
12:55:51 Grimmi
oh o,o just logged out to check didnt look like that earlier xD
Dash and Duchess
12:55:35 DD
I can't tell how I feel about it xD It feels so strange
Angels angels
12:54:40 [1k brindles] Angel
Woah what the heck lol
KPH Equestrian
12:54:02 Rapcoon | Jester
PK
yeah, two horses ^^;
Santana Rising
12:54:02 San
I got such a scare right now when I tried to log in.
Bioshock Manor
12:53:35 Storm
ooh love the sign in. Lots like WP
Fossil's Dreams
12:53:35 PK or Fossil
whoa sign in sure did change!
Love it!
KPH Equestrian
12:53:25 Rapcoon | Jester
ooh, that's funky >,> Gonna take some getting used to, but I like it!
PK Rescue Stable
12:52:35 Fossil-sore
In basic palette, there is now a horse in the field?
Eraserhead's Cats
12:52:34 Zawa/Sushi
Bluey it looks cooler
Blue Diamond
12:51:50 Bluey
The sign in page changed
Bioshock Manor
12:51:29 Storm
Ven I need that hat XD
You must be a registered member for more
than 1 day before you can use our chatbox.

Rules   Hide
You are in: Main Chat
View Sales
 Year: 185   Season: Spring   $: 0 Tue 12:58pm CST  
 Forecast: Afternoon Storms, then ClearingGo Raid 


Forums

→ Horse Eden is a fun game! Sign Up Now!

My Subscriptions
My Bookmarks
My Topics
Latest Topics
Following
Forums > Member Help > Guides
   1   ..    22    23    24 

Palette Guide September 14, 2024 03:17 PM


SCF Sporting Chance

Rumble Team
 
Posts: 914
#1242249
Give Award
Was wondering if there was a way to alter the colors or the size (of the bars) of the training bars? They are very dark and hard for me to see (to count) even when I enlarge the screen.
Palette Guide September 14, 2024 06:15 PM


Kiwi Mountains
 
Posts: 3046
#1242275
Give Award

SCF Sporting Chance said:
Was wondering if there was a way to alter the colors or the size (of the bars) of the training bars? They are very dark and hard for me to see (to count) even when I enlarge the screen.


Wondering the same thing. I've tried but either change the training bars, quest images, and show images. Or change everything BUT the training bars.
I haven't tried since the new updates though, so maybe if I get a minute I'll give it a go again.

Edited at September 14, 2024 06:25 PM by Kiwi Mountains
Palette Guide September 19, 2024 12:13 AM


The Unknown
 
Posts: 965
#1243057
Give Award

SCF Sporting Chance said:
Was wondering if there was a way to alter the colors or the size (of the bars) of the training bars? They are very dark and hard for me to see (to count) even when I enlarge the screen.


You can change the colours or apply other filters, such as brightness, like this:

table.tertiary.genericbox.tableshadow tbody tr td table tbody tr td img {
filter: brightness(1.5);
}

You can replace that brightness filter with something like hue-rotate instead to change the colours, or you can use both at once to change the colours and the brightness. Here's an example piece of code:

table.tertiary.genericbox.tableshadow tbody tr td table tbody tr td img {
filter: hue-rotate(200deg) brightness(1.5);
}

This example will change all of the bars to different shades of blue and will make them brighter by 50% (1.5 times the original value). It looks like this in use:

image.png

I haven't done very much browsing with this yet but it doesn't seem to affect any other site images.

Palette Guide November 19, 2024 09:52 PM


Grimmoire Gardens
 
Posts: 118
#1257698
Give Award
If at all possible, some advice on fonts would be greatly appreciated if you have the time to dm me! Trying to make these fonts work is kicking my rear 😫
Palette Guide November 20, 2024 05:07 PM

Dark Dream Appaloosa
 
Posts: 643
#1258042
Give Award
I'm having this same issue >.<

Renegades said:
This guide is amazing but could anyone help me with the background image? I've been all through the default code but cannot find the "Set the website background" section - it just seems to be missing!?
Edit: The game header image section has also dissapeared! I have reloaded a new default code but it is not there :/


Palette Guide November 21, 2024 11:17 PM


The Unknown
 
Posts: 965
#1258631
Give Award
Dark Dream Appaloosa said:
I'm having this same issue >.<

Renegades said:
This guide is amazing but could anyone help me with the background image? I've been all through the default code but cannot find the "Set the website background" section - it just seems to be missing!?
Edit: The game header image section has also dissapeared! I have reloaded a new default code but it is not there :/


If you see something that I have listed in my default code screenshots (they're a little outdated now), you can just manually type them in and they will do the same thing. I also have a section about using inspect element, which I highly recommend you read as it teaches you how to find code pieces for things not in the default layouts by yourself.

.body is the background image, and div.gameheader div[style]:first-child is for the website header image.

I'll be adding to my FAQ section within the next couple days to help with some of these questions.

Palette Guide November 22, 2024 08:18 PM


Bug in a Rug
 
Posts: 72
#1258864
Give Award
I'm trying to blur my background image a little, but succeeded only in blurring everything >.<
here's what I'm using, and it did absolutely nothing ._.
body {
background-image: url(https://i.postimg.cc/y6T8b9dY/Uncredited-Background-Bop.png);
background-attachment: fixed;
position: relative;
z-index: 0;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: inherit;
background-size: cover;
background-attachment: fixed;
filter: blur(10px);
z-index: -1;
}
In theory, it should work, but even my AI assistant(which taught me how to do overlapping headers specifically for HEE palettes) doesn't know what to do xD
-
then I tried this, because when all else fails, do whatever, and it still hasn't worked:
-
.background-blur {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(https://i.postimg.cc/y6T8b9dY/Uncredited-Background-Bop.png);
background-size: cover;
background-attachment: fixed;
filter: blur(10px);
z-index: -1; /* Ensure it stays behind other content */
}
body {
position: relative;
z-index: 1;
}
-
I'm at a loss here x3

Edited at November 22, 2024 08:19 PM by Bug in a Rug

Forums > Member Help > Guides
   1   ..    22    23    24 

Refresh



Copyright ©2009-2024 Go Go Gatsby Designs, LLC    All Rights Reserved

Terms Of Use  |   Privacy Policy   DMCA   |   Contact Us
Help Me (0)  |   Game Rules   |  Reset Palette