<newbie_warning>Thank you for the nice theme. However, as a totally newbie in coding, I'd appreciate some help how to get rid of the border (screen shot) in images starting from version 1.5? (did not find any setting to get it done.)<newbie_warning>

CommentFileSizeAuthor
image_border.png71.79 KBAbilnet
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

igoen’s picture

You're welcome.
If you want to make it disappear, you can edit other.css (about line 194). Other.css can be found in themes/whitebull/styles.

The code just like this

#main-content .content img {
  background: #e3e3e3;
  border-bottom: 1px solid #9a9a9a;
  border-left: 1px solid #c2c2c2;
  border-radius: 4px;
  border-right: 1px solid #9a9a9a;
  border-top: 1px solid #c2c2c2;
  padding: 5px;
  }

You can comment it so it can't be rendered ( with /* and */ ) or you can deleted it.

Example with the comment signature:

/*#main-content .content img {
  background: #e3e3e3;
  border-bottom: 1px solid #9a9a9a;
  border-left: 1px solid #c2c2c2;
  border-radius: 4px;
  border-right: 1px solid #9a9a9a;
  border-top: 1px solid #c2c2c2;
  padding: 5px;
}*/

I hope this is helping you, and thanks for using whitebull theme.

Abilnet’s picture

Perfect, works fine!

Thank you for help, appreciated.

igoen’s picture

Title: How to change image border in version 1.5 » How to change image border
Status: Active » Closed (fixed)

I think this was fixed, so I closed this issue.
When you want some help, just create another issue.

Thanks.