• Resolved iavinash

    (@iavinash)


    Hello All,

    Sorry for this novice question. When I use the plugin “One Click Child Them” it creates a style.css with almost blank line and we can put our codes directly. But the child them supplied for this Hueman has different sections

    @import url(“../hueman/style.css”);
    ————-
    /* Global */
    .mystyle {}
    @media only screen and (min-width: 720px) and (max-width: 800px) {
    .mystyle {}
    }
    /* Mobile – 480px & 320px */
    @media only screen and (max-width: 719px) {
    .mystyle {}
    }
    /* Mobile – 320px */
    @media only screen and (max-width: 479px) {
    .mystyle {}
    }

    So where do I exactly add my changes in this file. Reason I am asking is, I added some code just before /* Global */ but changes reflected only when accessed from laptop but not from mobile ??

    Thanks again,
    Avinash

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Avinash. Your code should go at the end, below the existing media sections. If you want to have changes take affect at specific screen sizes, then you would create an @media section with the specified size. Hope that helps.

    I see the paragraph with the site-description2 class, but don’t see any contents. What is it supposed to display?

    Thread Starter iavinash

    (@iavinash)

    I have added below code in my header.php

    <?php if ( ot_get_option(‘site-description’) != ‘off’ ): ?><p class=”site-description2″><?php dynamic_sidebar(‘sidebar-header’);?></p><?php endif; ?>

    I have created a side bar “sidebar-header” and added a search bar within it.

    Thanks,
    Avinash

    The code is ok; I tested it on my site and it works fine. Try making these changes to the css:

    1. On your #header site-description2 line, remove the float, margin-left and one of the color styles.

    2. Add this:

    #header .widget_search {
      width: 300px;
      float: right;
      }
    Thread Starter iavinash

    (@iavinash)

    Thank you bdbrown

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to use Hueman-Child-Master them for customization’ is closed to new replies.