Is there a way that the character selection block (ie the one that shows your toon when you log in, on my site it's on the left) so that the text can be readable on a light colored background?

Comments

ytwater’s picture

It looks like your theme is naming the blocks differently than standard.

The standard ID for the block should be: block-wowtoon-wowtoon-select-toon
The ID that is being created by the theme is: block-wowtoon-wowtoon_select_toon (not converting underscores to dashes).

Also, all block content is being overridden to light grey which is overlaying the background image anyways.

So quick and dirty fix: tell the select_toon block to use the wow background. Add this to your theme CSS:

#block-wowtoon-wowtoon_select_toon .content {
background: url("http://us.battle.net/wow/static/images/profile/sidebar-bg.jpg") -10px 0 no-repeat scroll transparent;
}
AzTweeter’s picture

awesome, it fixed it, Thanks much, the only other problem I'm having is figuring out why on the profile page, the image with the character gear and stats is not showing up properly. The image itself is not being displayed.

ytwater’s picture

Yeah, some Drupal themes don't expand tables. I should put that in the CSS for the module.

Try:

.summary-inventory {
width: 100%;
}
AzTweeter’s picture

Ok that worked.. man your going to get tired of me lol. I should be able to use the same code for the guild roster too right? just change the name?