This Version of css-class post-info slowed down the scrolling of my page. I am using the theme brushed_steel - maybe it is because of this theme. The "fixed" was the problem.

/* Header at the top of each post */
.post-info {
  background: #247AB1 url(images/paper.gif) no-repeat fixed left;
  color:white;
}

But there is an easy solution - which also other difficult themes may benefit from:

/* Header at the top of each post */
.post-info {
  background: #247AB1 url(images/paper.gif) no-repeat left;
  color:white;
  padding-left: 10px; 
}

is nearly the same - but the page scrolls fast!

Comments

artycul’s picture

mine looks like

.post-info {
  background: #247AB1 url('images/paper.gif') no-repeat 5px center ;
  color: white;
  padding-left:14px;
}

fixed is not a valid property for background-position. also, there should be 's around the image-urls. shall i create a patch?

just trying to help,

sebi ;)

Michelle’s picture

Nah, I actually find the pasted code easier than patches. I'm not real good at the whole revision control thing.

I'm just responding to issues right now so people don't think I'm ignoring them. Soon as I get a chance, I'll run through and apply them all to the module and commit a new version.

Thanks,

Michelle

Michelle’s picture

Component: Miscellaneous » Theming
Status: Active » Postponed (maintainer needs more info)

The newly created alpha 1 has many theme changes by eigentor. Please test with that and post again if you are still having an issue.

Thanks,

Michelle

Michelle’s picture

Status: Postponed (maintainer needs more info) » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.