Increase content area?

Wanted to increase content area of best tennis guru
website for tennis racquets and pickleball paddle. But i am unable to do that somebody help me to increase content area width and remove unnecessary html and css files?

You need to be more specific and show code. Your link shows a generally good looking website. So not sure what you are asking.

on that link have seen the side bar i just wanted to decrease the width of that sidebar so that my content area visibilty would be great.

If you mean the sidebar with the search input, you have this code in place:

.sidebar-primary {
    float: right;
    width: 30%;

Adjust the 30% to a smaller number.

Then here

.content {
    float: right;
    width: 70%;

Change the width to whatever is left out of 100% when you update .sidebar-primary. Also, you don’t need the float attribute for content. You already have it set higher up in the hierarchy.

1 Like