Widget problem

I have setup a html widget but cannot get the widget to expand to the full size of sidebar. There must be some padding or margin stopping this but I am not sure how to adjust it, can you please have a look, you can see in the pic that the “Recent Posts” header is wider than the boxes above it, I just need to get the boxes the same width as that header, thanks.

The post name is test2

Hello @waynepatt58,

Thanks for writing in!

I have inspected your sidebar and you inserted this custom html code:

<div class="e17748-175 x-row x-container max width">
  <div class="x-row-inner">
    
<div class="e17748-176 x-col">
    
<div class="e17748-177 x-text x-text-headline">
  <div class="x-text-content"><div class="x-text-content-text"><h3 class="x-text-content-text-primary">EDITORS PICKS</h3></div></div></div>

<div class="e17748-178 x-text">
  Our favourite guns and gear we have tested and recommend.</div>

<a class="e17748-179 x-anchor x-anchor-button" tabindex="0" href="#">

  
  <div class="x-anchor-content">
        <div class="x-anchor-text"><span class="x-anchor-text-primary">Check Now!</span></div>      </div>

    
  
</a>
</div>
  </div>
  </div>

The row did not expand within the bounds of the sidebar because of the max width class in the row. You may need to update the code and remove it.

<div class="e17748-175 x-row x-container">
  <div class="x-row-inner">
    
<div class="e17748-176 x-col">
    
<div class="e17748-177 x-text x-text-headline">
  <div class="x-text-content"><div class="x-text-content-text"><h3 class="x-text-content-text-primary">EDITORS PICKS</h3></div></div></div>

<div class="e17748-178 x-text">
  Our favourite guns and gear we have tested and recommend.</div>

<a class="e17748-179 x-anchor x-anchor-button" tabindex="0" href="#">

  
  <div class="x-anchor-content">
        <div class="x-anchor-text"><span class="x-anchor-text-primary">Check Now!</span></div>      </div>

    
  
</a>
</div>
  </div>
  </div>

You will also remove the max width in the other custom html that you have.

Thanks for your help, that fixed the problem.

We’re glad that the issue is now resolved, @waynepatt58.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.