Horse Eden Eventing Game
Horse Eden Eventing Game


Year: 193   Season: Summer   
$: 0
Forecast: Hot and Humid
Forecast:
Mon 09:26am  
Stables Online:  119   Go Raid
Chatbox
MakeEm Fancy
09:26:07 Ally 💜
Im glad he got a week 7
-HEE Click-
Florestä
09:26:06 Madi
TBs can only come from TB x TB right?
Angels angels
09:25:25 [1k+ brindles] Angel
It does if it is TB dam x WB sire
But I agree Myth lol
Minerva
09:25:18 Min
My ADs get tracked 4-12, my SDs only get weeks 3 and 7 tracked, but ill glance at the 4s just in case theres a really shit one sneaking through that isnt all up
SpottyButts
09:24:59 Zomb
could be worse lool
-HEE Click-
Mythological
09:23:45 Crowley
I wish TB x WB = WB lol
Mythological
09:22:57 Crowley
My original LLLs are all dead I believe...
Florestä
09:22:39 Madi
hes so cool omg
-HEE Click-
MakeEm Fancy
09:22:05 Ally 💜
Thats impressive! @Angels
ArcticLights
09:21:45 Ceci / (Call me) AL
Myth, oh noes :(
Angels angels
09:21:10 [1k+ brindles] Angel
-HEE Click-
I think this is the best week 7 I have ever had :)
Mythological
09:20:50 Crowley
Stella kicked the bucket...
ArcticLights
09:20:19 Ceci / (Call me) AL
Myth?
Mythological
09:20:02 Crowley
Ceci?
Florestä
09:19:56 Madi
niceeee!! -HEE Click-
Cryptik
09:00:36 
awesome, thank you <33
Lovely angels
08:58:04 Angel's angels (SA)
Most people stop at about 12-15
Cryptik
08:57:49 
okie thanks guys!
Roughly wat week would you stop tracking trainings at?
Nightingales Ridge
08:57:20 Issy
Check each week and note when each cat* goes up
Lovely angels
08:56:50 Angel's angels (SA)
Every week
Or atleast every week ot changes. Like week 5 and 6 are normally all up so you don't have to put both down

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 Chat
Quests
Horse Eden Eventing Game
Chatbox
MakeEm Fancy
09:26:07 Ally 💜
Im glad he got a week 7
-HEE Click-
Florestä
09:26:06 Madi
TBs can only come from TB x TB right?
Angels angels
09:25:25 [1k+ brindles] Angel
It does if it is TB dam x WB sire
But I agree Myth lol
Minerva
09:25:18 Min
My ADs get tracked 4-12, my SDs only get weeks 3 and 7 tracked, but ill glance at the 4s just in case theres a really shit one sneaking through that isnt all up
SpottyButts
09:24:59 Zomb
could be worse lool
-HEE Click-
Mythological
09:23:45 Crowley
I wish TB x WB = WB lol
Mythological
09:22:57 Crowley
My original LLLs are all dead I believe...
Florestä
09:22:39 Madi
hes so cool omg
-HEE Click-
MakeEm Fancy
09:22:05 Ally 💜
Thats impressive! @Angels
ArcticLights
09:21:45 Ceci / (Call me) AL
Myth, oh noes :(
Angels angels
09:21:10 [1k+ brindles] Angel
-HEE Click-
I think this is the best week 7 I have ever had :)
Mythological
09:20:50 Crowley
Stella kicked the bucket...
ArcticLights
09:20:19 Ceci / (Call me) AL
Myth?
Mythological
09:20:02 Crowley
Ceci?
Florestä
09:19:56 Madi
niceeee!! -HEE Click-
Cryptik
09:00:36 
awesome, thank you <33
Lovely angels
08:58:04 Angel's angels (SA)
Most people stop at about 12-15
Cryptik
08:57:49 
okie thanks guys!
Roughly wat week would you stop tracking trainings at?
Nightingales Ridge
08:57:20 Issy
Check each week and note when each cat* goes up
Lovely angels
08:56:50 Angel's angels (SA)
Every week
Or atleast every week ot changes. Like week 5 and 6 are normally all up so you don't have to put both down

You must be a registered member for more
than 1 day before you can use our chatbox.






Refresh


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    3 

Den's CSS Guide: Overlapping images + CSS essentials May 28, 2020 05:35 AM

Former Stable
 
Posts: 0
#691182
Give Award

Gem said:
Also wanted to say thanks for making this tutorial in general <3


You're very welcome <3 Feel free to share what you wind up making with it!
Den's CSS Guide: Overlapping images + CSS essentials May 28, 2020 07:04 AM


Gem
 
Posts: 5240
#691204
Give Award
I certainly will!
Den's CSS Guide: Overlapping images + CSS essentials May 28, 2020 09:38 PM


Vixen Creek
 
Posts: 843
#692719
Give Award
I just did 2 semesters of html and css and still have a lot to learn, why would you want to use an id as a selector instead of a class? In my course we've always used classes so far. Thank you for making this! It will be very helpful for a lot of us :)
Den's CSS Guide: Overlapping images + CSS essentials May 31, 2020 09:49 AM


Quizzical Quarters
 
Posts: 2142
#695435
Give Award

Thank you so much for this! Really appreciated, Dense! I'm in love with the palette that I currently have on, the butterflies make the whole piece. <3

Den's CSS Guide: Overlapping images + CSS essentials June 20, 2020 07:48 AM

Former Stable
 
Posts: 0
#716779
Give Award

Vixen Creek said:
I just did 2 semesters of html and css and still have a lot to learn, why would you want to use an id as a selector instead of a class? In my course we've always used classes so far. Thank you for making this! It will be very helpful for a lot of us :)


The id attribute is intended for uniquely identifying HTML elements. So to follow best practice, only one element (per page) should for example have the id "navigation", and each element can only have a single id value. Since HTML is largely just a way to describe your web page, using id is a great way to say this element is special, and there can only be one of its kind.

Meanwhile, the class attribute is just as you've learned it: another way to classify/mark elements that you want to style the same way. Multiple elements can have the same class value, and every element can have multiple class values (separated with spaces).

There are also other side effects of using id vs. class, but the difference I described above is probably the most relevant part. Hope that helps!
Den's CSS Guide: Overlapping images + CSS essentials June 20, 2020 07:51 AM

Former Stable
 
Posts: 0
#716780
Give Award

Quizzical Quarters said:

Thank you so much for this! Really appreciated, Dense! I'm in love with the palette that I currently have on, the butterflies make the whole piece. <3



I remember seeing it from 2 weeks ago!! That was an absolutely brilliant use of overlapping images like that! It's such a thrilling moment to scroll for~ Love the creativity, and glad my guide could help!
Den's CSS Guide: Overlapping images + CSS essentials June 25, 2020 08:59 AM


Cherry River Elites
 
Posts: 1000
#722488
Give Award
I want to make the images show up on the page itself, not the header. How do I do this? Is it possible?

Edited at June 25, 2020 09:01 AM by Rushing River Stable
Den's CSS Guide: Overlapping images + CSS essentials June 25, 2020 09:35 AM


Cherry River Elites
 
Posts: 1000
#722525
Give Award
As well, what site does eeryone use to extend an image? I have this one, but I want to add blank space below it for my images.
I want to have the images I plan to add below that image. But I can't find an editor that will let me do it.
Den's CSS Guide: Overlapping images + CSS essentials July 6, 2020 04:43 PM


HMH Reality Check

Rumble Team
 
Posts: 5544
#732860
Give Award

Dense Moors said:

Ladybird Estate said:
Is there anyway to make the header by transparent?


To remove the original game header image, try:

.gameheader {
background: none;
}


You can also use:
.gameheader {
background: rgba(255, 255, 255, 0.01);
}
Den's CSS Guide: Overlapping images + CSS essentials July 6, 2020 06:58 PM


Cherry River Elites
 
Posts: 1000
#732947
Give Award
Or just rgba(36, 78, 865, 0)

Forums > Member Help > Guides
   1    2    3 

Refresh