If I put something into the left sidebar I cannot click anything in the main content because of the css. The width for the left sidebar isn't specified.

Comments

andregriffin’s picture

Are you saying you removed the width that was set for the left sidebar?

Feliguez’s picture

It's true. The width for the left sidebar isn't specified but easily to fix
See in the css code in line 215 and replace body.sidebar-right #sidebar-left for this body.sidebar-left #sidebar-left.

/* 2 columns: sidebar-left */
body.sidebar-right /*<--replace for left*/ #sidebar-left {
  float: left;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-right */
body.sidebar-right #sidebar-right {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}
andregriffin’s picture

Version: 6.x-3.2 » 6.x-3.3
Status: Active » Fixed

Incorrect sidebar-left CSS fixed in 3.3

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.