Hi again. I'm just learning, so please understand that I am learning CSS through trial and error -

I have changed the third column in Newswire to a transparent background, but have been unable to replicate the outline of the blocks. I have tried changing the .block-wrapper, but it's not working (I'm sure that's not how it's supposed to be done).

Can anyone provide me with info on where in the CSS for the Custom Tan Newswire theme I can change the 3rd column to have the outline of the blocks? Any help is much appreciated.

Here's where I am - my dev site: dev.thewomensnest.com (please ignore other blocks/content - It's all not linked right and the content is somewhat bogus, I'm working on just the theme - my real site is http://www.thewomensnest.com).

Thank you!
Melissa

Comments

Jeff Burnz’s picture

Place this at the bottom of the custom tan stylesheet, it should give you what you want. This will just override everything because they will be the last styles loaded (being at the bottom of the last stylesheet to load).

#right_2 {
  background:transparent;
  border:0;
}

#right_2 .block {
  border:1px solid #E1CAA1;
}

#right_2 .block .block-wrapper {
  background:transparent;
  padding:0 0 0.2em;
}

#right_2 .block h3.title {
  background:#F4ECDD;
  border-bottom:1px solid #E1CAA1;
}

The styles come from both style.css and the custom tan stylesheet, use Firebug to find out where they are coming from (its Firefox addon, very useful for this sort of thing).

happythoughts’s picture

That was awesome! It worked!! Thank you so very much!!!!

Melissa