New account registration is temporarily disabled.

DOWNLOAD BUTTON LOCATION

Posts

Pages: 1
I was thinking today how nice it would be if the "Download Now" button was located under your game's score/review. For my game page... the download now button appears right over my header. Granted... I do probably have a massive header compared to many, and I could easily update it, but I also feel the site would look a lot cleaner if the download button was along the right... further down from the Rating/Reviews. Just a thought.

yeah the site layout and CSS is quite dated these days.

You could try

#game_header .right_column {
display: flex;
flex-direction: column-reverse;
}


??
author=kentona
yeah the site layout and CSS is quite dated these days.

You could try

#game_header .right_column {
display: flex;
flex-direction: column-reverse;
}


??


Oh, thank you for that. I didn't even consider changing it myself. I'm not great with coding/scripting. That almost did it. Put download below the rating, but they're not over far enough now haha:

OzzyTheOne
Future Ruler of Gam Mak
4698
I tried the following CSS on your gamepage (by clicking inspect and messing with the in-browser page code) and came up with a result close to what you want, I think.

#game_header .right_column {
display: flex;
flex-direction: column-reverse;
align-items: center;
}

author=OzzyTheOne
I tried the following CSS on your gamepage (by clicking inspect and messing with the in-browser page code) and came up with a result close to what you want, I think.

#game_header .right_column {
display: flex;
flex-direction: column-reverse;
align-items: center;
}

Thank you for that! Looks so much better now. I'm not sure why your screenshot has it over further and not overlapping the image but mine does... LOL Either way... it still looks 10x better. Appreciate your help with this!
Different screen resolutions, very likely the dealio there.
author=Liberty
Different screen resolutions, very likely the dealio there.


I thought that, too. I'm OK with how it looks. I may also try reducing my image to a less... massive scale LOL
Pages: 1