X
HGG Community Forums
Log In to HorseGeneticsGame
HGG Community Forums
Join our discord server!
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Categories
- All Discussions61,405
- Announcements1,194
- HAJ Discussion59,055
- ↳ New Member Introductions68
- ↳ Help Me Out5,089
- ↳ Horses for Sale and Auction14,459
- ↳ Breeding Ads and Sales6,102
- ↳ Herd Helpers22,965
- ↳ Bug Discussion8
- Non HAJ Discussion1,156
- ↳ Saddle Sisterhood113
- ↳ Games, Contests and GiveAWays349
- ↳ Genetics305
In this Discussion
- Helia August 2015
Who's Online (3)
- Cavalynn 11:35AM
- GoldenSpur 11:36AM
- Haystack 11:35AM
code tests and tips :)
-
a few things worth noting, for anyone interested.
1) You can't change the background color of the forum posts. I honestly expected that to be the case, but tried anyway :)
2) Copying and pasting from a standard code editor will give you some funky results in formatting (mostly line breaks and too much spacing) that will need to be fixed, but the content itself transfers well.
3) HTML 5 is hit or miss here. Sometimes the forum wants the old tags, and sometimes it wants the new ones. Not an issue, just a good idea to have both versions up for reference.
4) I will probably continue using this thread for testing purposes. Just ignore my insanity, but you're welcome to take anything I post and use it. I will post code that I find useful.Post edited by Helia at 2015-08-11 07:15:24
ID 211323Thanked by 1Johara -
If you want to make any logo appear the full width of the page on any browser:
<img width=100% src="http://lorempixel.com/400/100/nature" alt="alternate text just in case">
I used a random 400px wide placeholder image from lorempixel - it's narrower than a standard horse image, but it takes up about half the page if you don't adjust for banner width. It retains its original proportions (4:1) but the dimensions are scaled accordingly. Just be sure the image is a high enough quality that it won't get pixelated if it's blown up bigger.Post edited by Helia at 2015-08-11 07:15:48
ID 211323Thanked by 1Johara