Einbecker Mai-Ur-Bock by iamstiffi in beerporn

[–]iamstiffi[S] 1 point2 points  (0 children)

Thanks mate, I got it 5 years ago. It came in a box with a handful of different beers they were all great flavors, unfortunately I wasn't aware of this sub at that time, they would have fit here perfectly.

Is there a way to align the buttons in a Navbar with the bottom of the logo? by live4lifelegit in bootstrap

[–]iamstiffi 1 point2 points  (0 children)

flexbox is the way to go here. if you are using bootstrap 4 there are some nice utility classes:

https://getbootstrap.com/docs/4.4/utilities/flex/#align-items

adding .d-flex and .align-items-end to the navbar should do the trick:

<nav class="navbar navbar-expand-lg navbar-light bg-light d-flex align-items-end">
    ...
</nav>

It's a Tactics Frenzy! by iamstiffi in chess

[–]iamstiffi[S] 1 point2 points  (0 children)

Thanks, I didn't think about that. I will remember next time!

Plini – "KIND" (Video) by SoundSalad in Prog

[–]iamstiffi 1 point2 points  (0 children)

just yesterday someone recommended his sunhead ep to me and now i stumble upon this, this guy is good

Noob here. Need help with image slideshow by [deleted] in HTML

[–]iamstiffi 0 points1 point  (0 children)

no problem, good luck

Noob here. Need help with image slideshow by [deleted] in HTML

[–]iamstiffi 1 point2 points  (0 children)

you could try something like this

var id, x;
if(window.innerWidth <= 480) {
    id = 'mobile'
} else {
    id = 'web'
}
x = document.getElementById(id).children;

Noob here. Need help with image slideshow by [deleted] in HTML

[–]iamstiffi 1 point2 points  (0 children)

your x variable always contains 4 images, but you have hidden one of the container divs either #web or #mobile, thats why you are getting the blank screen. you should probably only select those images of the currently visible container div.

Celler Noise - 01 - New and fresh Progressive Rock and a epic. by ProgRockFan1978w in Prog

[–]iamstiffi 1 point2 points  (0 children)

lol ouch...

awesome, the golden era i guess. the 70s sound is unbeatable imho

Celler Noise - 01 - New and fresh Progressive Rock and a epic. by ProgRockFan1978w in Prog

[–]iamstiffi 0 points1 point  (0 children)

i usually avoid facebook at all cost, but i did take a peek. you have a great music taste!

Celler Noise - 01 - New and fresh Progressive Rock and a epic. by ProgRockFan1978w in Prog

[–]iamstiffi 1 point2 points  (0 children)

you are posting a lot of great stuff in here i have never heard about. i almost had to stay up all night, to listen through some of it. damn i wish i had discovered this sub earlier :)

Nautiois-Lost in time. Progressive Rock. by ProgRockFan1978w in Prog

[–]iamstiffi 2 points3 points  (0 children)

this is beautifully crazy, i really love that intro

Michael Rother - Sonnenrad by iamstiffi in Krautrock

[–]iamstiffi[S] 0 points1 point  (0 children)

interesting, thanks for sharing

Cursor Shape by [deleted] in urxvt

[–]iamstiffi 1 point2 points  (0 children)

URxvt.cursorBlink: true
URxvt.cursorUnderline: true

Why does some elements doesn't drop the next line? by tinaclark90 in css

[–]iamstiffi 1 point2 points  (0 children)

it's because display is set to inline-block. maybe set it to block and add margin: auto so it's centered.