stucco scrolling on portfolio page

Permalink
installed stucco them on latest clean install 5.7 whatever... after loading up twelve project pages for the portfolio page, I can't scroll the page. it worked when I first installed - I added a project at a time to make sure I didn't break it, but now it's not scrolling. all other pages work fine, just not the portfolio master page. I'm a noob, any help?

jleinbaugh
 
lschiffli replied on at Permalink Reply
When you look at the page with Dev Tools (F12) in your browser, do you have any Console errors on the page when it stops scrolling?
jleinbaugh replied on at Permalink Reply
jleinbaugh
you're way outta my programming league. if you wan't to look at it, it's Leinbaugh.com/jim

I've made no changes from stock install except content and adding pages...

all pages function as they should, but portfolio page won't scroll up or down.

I do notice that the portfolio page has a larger black bar across the top of the page compared to all other pages
jleinbaugh replied on at Permalink Reply
jleinbaugh
only thing I can figure out via dev tools is that when I look at the code and change body class to "blog" instead of "media" it works. Now to just find where the body class is generated...
mnakalay replied on at Permalink Best Answer Reply
mnakalay
Hello,
I think the problem you are experiencing is totally accidental. What happens is the page path (not the name) is used as a class for the page's body.

So when you go to "Expertises" the url ishttp://leinbaugh.com/jim/index.php/services... so the body class is "services"
When you go to your portfolio page however the url ishttp://leinbaugh.com/jim/index.php/media... so the body class is "media"

This is where the problem comes from. Your site is based on bootstrap and bootstrap includes CSS rules for a class of "media" or "media-body" that creates this problem.

.media, .media-body {
    zoom: 1;
    overflow: hidden;
}

the "overflow: hidden" bit is the culprit.

Change the url to your portfolio page to something different than "media" and the problem will disappear.
jleinbaugh replied on at Permalink Reply
jleinbaugh
thanks, changing the page name back to portfolio made it all happy again. I had a few resumes out with the link to a "media" page, but at this point, since I'm re-doing the site anyway they'll just have to figure it out. thanks again!