The Laboratory
08:23:08 Lab
Theoretically, we can have storm floods. Had those in the past. So we built dykes, now were good.
Darkside Dreams
08:20:38 Grape the Haphazard
I shall be grateful I'm not moving farther towards the center of the country
London Estates
08:18:50 Rainy ☔/Fritzi
Ugh It was fucking hot one week ago and know i'm freaking freezing with 7°C as maximum
London Estates
08:18:02 Rainy ☔/Fritzi
Lab :')
The Old Gods
08:17:08 Void Malign
-Click- entirely serious. Take a gander at these maps that show the areas for potential tornado warned storms for the rest of the week
Tamarack Mountain
08:17:00 Opal
goal...keep breeding this up
-HEE Click-
Dun Fall Estates
08:16:54 Remalyn | Remi | Rem
Vam
That's preppy
The Laboratory
08:16:50 Lab
So happy to live in an area where "heavy rain" gets into the news for unusual weather.
Darkside Dreams
08:16:35 Grape the Haphazard
I hate Ohio, they say soda is pop and it's freaking Ohio but that's where my partner lives and I want to be near my partner. That is the ONLY reason I'm even setting foot there.
Vampire Acres
08:15:52 
ugh my internet is bad
The Old Gods
08:15:43 Void Malign
If you're moving to the midwest, you're likely going to have the potential for tornadoes.
Full Stride Farm
08:15:28 Lieutenant RakeZilla
We have plenty of hills here in KY and my daughterÂ’s farm was just destroyed by a tornado on April 2.
Tornadoes will not be stopped by hilly terrain
Darkside Dreams
08:15:10 Grape the Haphazard
Don't tell me that damnit
The Old Gods
08:14:54 Void Malign
'cause uh, my area's hilly :D
The Old Gods
08:14:21 Void Malign
Hills don't mean shit lol.
Darkside Dreams
08:13:27 Grape the Haphazard
I'm moving to the Midwest after living on the east coast all my life, I know hurricanes and blizzards but not tornadoes. So, so glad that we're moving to a hilly area and not a tornado zone
Greenheart Stables
08:13:11 Green|Gree|Gen
Yeah tornados are cool as long as they're not in your direction lol
The Old Gods
08:12:03 Void Malign
Would I like to see a tornado in person? Sure! Just not when it's coming towards me. As they say, if the tornado doesn't seem to be moving, it's time to put on the brown pants 'cause it's probably headed your way lol
The Old Gods
08:10:30 Void Malign
Well, I mean, I'm gonna have to risk it regardless since I live in a trailer. Going out in it is gonna happen regardless.
Darkside Dreams
08:09:16 Grape the Haphazard
That's fair. Also definitely smart. I wouldn't risk it just because of the cats
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: 177   Season: Winter   $: 0 Fri 08:23am CDT  
 Forecast: Sunny


Forums

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

My Subscriptions
My Bookmarks
My Topics
Latest Topics
Following
Forums > Member Help > Guides
  1  2

Losts Palette Guide to the Little Tidbits August 4, 2020 06:40 PM

LostCause
 
Posts: 1822
#753066
Give Award
I'll be posting the little tidbits of coding I uncover in this thread for others to use! I know I promised this thread like a week ago, but better late than never?

If you have any additional details you'd like to contribute to this list or have an idea for something that can be coded, PM me!

I'll be updating this table of contents as I post codes.

TOC

1. Manipulating the color of the stable page's featured horse tabs - Page 1
2. Making the featured horse area fully transparent when using a transparent palette - Page 1
3. Fade in animation - Page 1
4. Change the footer text - Page 1
5. Who's Online Popout - Page 2

Edited at June 15, 2022 08:56 PM by LostCause
Losts Palette Guide to the Little Tidbits August 4, 2020 07:12 PM

LostCause
 
Posts: 1822
#753093
Give Award
Manipulating the Color of the Featured Tabs

-----------------------------

Each individual button is a seperate image numbered 1-5. Because they're already images, filter css properties must be applied.

Filter properties that can be used include:
blur() | brightness() | contrast() | drop-shadow() | grayscale() | hue-rotate() | invert() | opacity() | saturate() | sepia() | url()
More information about what they individual do/how to manipulate them can be found here.

Basic skeleton code:
#Stable img[onmouseover] {
filter: filter effect here;
}

Please keep in mind that because the images are already a default yellow/green you may not be able to achieve the exact color you're looking for. I haven't personally tried the url() option, so you may be able to provide your own background! You can stack filters to help achieve the look:

#Stable img[onmouseover] {
filter: hue-rotate(100deg) grayscale(20%);
}

My side project has been to uncover the coding for the ones located on an individual horse's page which I've abandoned for the time being. The last time I tried, it also tinted the horse's art as well. :P If I crack the code I'll share that in this post!

Edited at August 4, 2020 07:20 PM by LostCause
Losts Palette Guide to the Little Tidbits August 4, 2020 07:46 PM

LostCause
 
Posts: 1822
#753137
Give Award
Making the Featured Horse Area Fully Transparent When Making a Transparent pgbg/tablebg

-----------------------------
If you're confused as to what I'm talking about, I understand. xD

>>>>>>>


---------------------------------------
Thank you, Sunset, for being my guinea pig <3
When using transparency in your pg, you may notice that the transparency also layers itself here and ruins the full transparency effect. Two pieces of code are needed to negate any impact. To combat that,

.mainline.tablebg {
background: transparent;
}
.featuredscroll.tablebg {
background-color: transparent !important;
}

If you're savy to css, you can also manipulate these tables to be different transparencies/colors/images!

**BIG NOTE - Because .featuredscroll is also still .tablebg you may need to alter the code. If your css for .tablebg says background instead of background-color your .featuredscroll.tablebg must use the same wording.


Edited at August 4, 2020 11:31 PM by LostCause
Losts Palette Guide to the Little Tidbits August 8, 2020 07:45 PM

LostCause
 
Posts: 1822
#755571
Give Award
Fade In Animation
donated by Diagon Alley Elites [268585]
-----------------------------

To add in that neat fade in effect to any part of your palette, add in the following coding between the brackets of what you want to change:

animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}

}

The time highlighted in red can be changed to dictate the total time it takes the selected code to fade to 100%!

Edited at August 8, 2020 07:46 PM by LostCause
Losts Palette Guide to the Little Tidbits August 8, 2020 08:11 PM

LostCause
 
Posts: 1822
#755575
Give Award
Changing the Footer Text
-----------------------------

Pretty simple. Use the coding below and edit in your choice of font/color/size:

.footergrey { font-family: times; font-size: 12px; color: #1a3e4c;
}
.footergrey a:link { font-family: times; font-size: 12px; color: #1a3e4c;}
.footergrey a:hover { font-family: times; font-size: 12px; color: #1a3e4c;}
.footergrey a:visited { font-family: times; font-size: 12px; color: #1a3e4c;}


Edited at August 8, 2020 08:13 PM by LostCause
Losts Palette Guide to the Little Tidbits August 24, 2020 12:35 AM

Willow Grove
 
Posts: 567
#764450
Give Award

LostCause said:
Manipulating the Color of the Featured Tabs

-----------------------------

Each individual button is a seperate image numbered 1-5. Because they're already images, filter css properties must be applied.

Filter properties that can be used include:
blur() | brightness() | contrast() | drop-shadow() | grayscale() | hue-rotate() | invert() | opacity() | saturate() | sepia() | url()
More information about what they individual do/how to manipulate them can be found here.

Basic skeleton code:
#Stable img[onmouseover] {
filter: filter effect here;
}

Please keep in mind that because the images are already a default yellow/green you may not be able to achieve the exact color you're looking for. I haven't personally tried the url() option, so you may be able to provide your own background! You can stack filters to help achieve the look:

#Stable img[onmouseover] {
filter: hue-rotate(100deg) grayscale(20%);
}

My side project has been to uncover the coding for the ones located on an individual horse's page which I've abandoned for the time being. The last time I tried, it also tinted the horse's art as well. :P If I crack the code I'll share that in this post!


Where do we add this?
Losts Palette Guide to the Little Tidbits August 25, 2020 11:05 PM

LostCause
 
Posts: 1822
#766016
Give Award

Weeping Willow Ranch said:

LostCause said:
Manipulating the Color of the Featured Tabs

-----------------------------

Basic skeleton code:
#Stable img[onmouseover] {
filter: filter effect here;
}

Where do we add this?


Wherever in the css should be fine!

Edited at August 25, 2020 11:07 PM by LostCause
Losts Palette Guide to the Little Tidbits August 25, 2020 11:08 PM

Willow Grove
 
Posts: 567
#766021
Give Award
Alright, thanks!
Is it the same for the other things?
Losts Palette Guide to the Little Tidbits August 25, 2020 11:13 PM

LostCause
 
Posts: 1822
#766028
Give Award

Weeping Willow Ranch said:
Alright, thanks!
Is it the same for the other things?


Fade in animation must be placed within the brackets of whichever part it is of the palette you want to fade in. The current others are standalone.
Losts Palette Guide to the Little Tidbits August 25, 2020 11:15 PM

Willow Grove
 
Posts: 567
#766032
Give Award
Ok, thanks!

Forums > Member Help > Guides
  1  2

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