Title: Jolene Customization Issues
Last modified: August 30, 2016

---

# Jolene Customization Issues

 *  Resolved [Invertir en Dividendos](https://wordpress.org/support/users/invertir-en-dividendos/)
 * (@invertir-en-dividendos)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/jolene-customization-issues/)
 * Hi all,
 * Firstly I would like to thank everyone in this forum for their support. I think
   Jolene is agreat theme and I am using it in my blog [http://invertirendividendos.com/](http://invertirendividendos.com/).
 * I am not an expert php or web programmer, I would like to customize some issues
   and I have prepare a child theme for this purpose. Some doubts you may be able
   to solve:
 * + I would like to use a three colunm structure but slightly changing sidebars
   withd (instead of both being equal, left sidebar 50px wider and right sidebar
   50px narrower). I have been trying modifying “@media screen and (min-width: 1349px)”
   but I have no success. I know that the width configuration is only for 0/1 column
   structures but I guess that modifying the style.css should be possible
 * + I would like to remove the header image in case of being displayed in a mobile
   phone. I have identified where the image header is being showed “function jolene_header_image()”
   but I have not been able to identify a variable that could be used to detect 
   this situation.
 * Thanks in advance for your help. Regards

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Theme Author [cats_456](https://wordpress.org/support/users/cats_456/)
 * (@cats_456)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/jolene-customization-issues/#post-6492265)
 * Invertir en Dividendos, theme uses [@media](https://wordpress.org/support/users/media/)
   queries to create mobile layout, that’s mean header image can be hidden on mobile
   by using [@media](https://wordpress.org/support/users/media/) query code.
 * First code should nide header image:
 *     ```
       .header-image {
          display: none;
       }
       ```
   
 * and [@media](https://wordpress.org/support/users/media/) query displays it at
   some size:
 *     ```
       @media screen and (min-width: 960px) {
          .header-image {
             display: block;
          }
       }
       ```
   
 * Width of column has property max-width, change it too.
 *     ```
       @media screen and (min-width: 1349px) {
          .right-sidebar-is-on .sidebar-right {
              width: 350px;
              max-width: 350px;
          }
       }
       ```
   
 *  Thread Starter [Invertir en Dividendos](https://wordpress.org/support/users/invertir-en-dividendos/)
 * (@invertir-en-dividendos)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/jolene-customization-issues/#post-6492266)
 * Thank you for your help

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Jolene Customization Issues’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/jolene/1.1.6/screenshot.png)
 * Jolene
 * [Support Threads](https://wordpress.org/support/theme/jolene/)
 * [Active Topics](https://wordpress.org/support/theme/jolene/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/jolene/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/jolene/reviews/)

## Tags

 * [header image](https://wordpress.org/support/topic-tag/header-image/)
 * [sidebar width](https://wordpress.org/support/topic-tag/sidebar-width/)

 * 2 replies
 * 2 participants
 * Last reply from: [Invertir en Dividendos](https://wordpress.org/support/users/invertir-en-dividendos/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/jolene-customization-issues/#post-6492266)
 * Status: resolved