• Sheryl Burch

    (@sheryl-burch)


    I am trying to change the width of my widgets, some are perfect while others are cut off on the right sidebar. My website is https://www.lipstickandlumber.com, scroll to the middle where products show in a slider, that is the one I need help with. I have full width but the space between the content and right sidebar is still close together so I don’t want to move the sidebar over to the left more, just need help with the right white space. I have tried other suggestions in this forum, custom CSS, but I can’t get any of those to work.

Viewing 5 replies - 1 through 5 (of 5 total)
  • TUT Support

    (@phpexpert21)

    Hello Sheryl,

    Thank you for contacting us.

    I checked your side there is lot of widget in right sidebar, if you mention the specific widget so i will provide you the custom css as per the need.

    I hope the above was helpful.

    Kind regards,

    Manoj

    Thread Starter Sheryl Burch

    (@sheryl-burch)

    it is the one with a slider showing welding products, half way down the right side. The box and some of the description is cut off.

    Thread Starter Sheryl Burch

    (@sheryl-burch)

    Have you had a chance to look at this issue yet?

    web809

    (@web809)

    Hi,
    I’m interested in this question, too.
    I’m using just one sidebar, it’s the one under “Kontakt”. If there’s a possibility to slim this sidebar a little bit, please let me know.
    BG

    PS: Okay, I have to correct, at the moment I’m not using the sidebar. But I wanted to use contact form 7, and then I’ve got the width-problem, too.

    • This reply was modified 8 years ago by web809.
    Theme Author Styled Themes

    (@gejay)

    Hi everyone,

    We are using bootstrap grid layout for content area [col-md-9] and sidebar[col-md-3]. If you want to change the width of sidebar, you need to find the specific template and customize there accordingly.

    Let us suppose you want to decrease the size of sidebar on single page then you can do something like this:

    <div class="container">     
        <div class="row">
            <div class="col-md-10">        
         </div>
          
          <div class="col-md-2">
            <?php get_sidebar( 'right' ); ?>
          </div>
          
        </div>      
    </div>
    
    <?php get_footer(); ?>

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change Width of Widgets’ is closed to new replies.