• Resolved Invertir en Dividendos

    (@invertir-en-dividendos)


    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/.

    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

    (@cats_456)

    Invertir en Dividendos, theme uses @media queries to create mobile layout, that’s mean header image can be hidden on mobile by using @media query code.

    First code should nide header image:

    .header-image {
       display: none;
    }

    and @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

    (@invertir-en-dividendos)

    Thank you for your help

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

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