Hi!

Thanks for a nice theme and well documented css.

I have a problem with IE and this theme. The primary and secondary links don't move along with the rest when resizing the screen. If I refresh or just hover above, they snap into place again. I googled to some general stuff about this, but was unsuccesful implementing that in the code. Any idea?

See http://gico.kleiveland.no for an example. (Looks different because I need different colors, but behaviour is the same with default style.css)

Thanks
Roald

Comments

derekwebb1’s picture

Assigned: Unassigned » derekwebb1
Status: Active » Postponed (maintainer needs more info)

My development computer is currently suffering from a case of "fried motherboard" however I am expecting to have a replacement to me by next Thursday so I will look into it asap ok?

I will try to get this resolved for you though.

Best regards, Derek

derekwebb1’s picture

Status: Postponed (maintainer needs more info) » Active

Apologies about the delay, however I am currently working on a project and have not had time to track down that problem. I will get to it though. Chances are it is caused by a misplaced position: relative; or what not.

I will get to it as soon as I can...

Derek

derekwebb1’s picture

Come to find out, my initial hunch was right. Comment out or remove the line "position: relative;" in the following places:

#primary-links #navlist li a {
padding: 0 9px 10px 9px;
margin: 0;
float: left;

HERE --> /*position: relative;*/

display: block;
background: url('images/ActaSprites.gif') 50% 0px no-repeat;
color: #ffffff;
}

and

#secondary-links #subnavlist li a {
float: left;

HERE --> /*position: relative;*/

height: 22px;
padding: 9px 4px 0 4px;
display: block;
color: #000;
}

Will get the patch out shortly. Just re-installed WinCVS (AKA "My arch nemesis")...

Derek Webb

derekwebb1’s picture

Status: Active » Fixed

Okay I decided to go ahead and fix this... It was weighing heavily on my conscience to go ahead and do so.

Thanks goes to Adrian for getting CVS to behave itself!

At any rate, download the latest style.css file.

You will want to use the following:

#primary-links #navlist li a {
  padding: 0 9px 10px 9px;
  margin: 0;
  float: left; /* required to get IE7 to keep from collapsing all the links into one small area - I hate IE */
  display: block;
  background: url('images/ActaSprites.gif') 50% 0px no-repeat;
  color: #ffffff;
}

And

#secondary-links #subnavlist li a {
  float: left;
  height: 22px;
  padding: 9px 4px 0 4px;
  display: block;
  color: #000;
}

And finally

.content-inner .node_read_more a {
  background: url('images/icons/page_white.gif') no-repeat;
  padding-bottom: 7px;
  padding-left: 20px;
  display: block;
}
.content-inner .comment_comments a {
  background: url('images/icons/comment.gif') no-repeat 0 2px;
  padding-bottom: 7px;
  padding-left: 20px;
  display: block;
}
.content-inner .comment_add a,.comment_reply a {
  background: url('images/icons/comment_add.gif') no-repeat;
  padding-bottom: 7px;
  padding-left: 20px;
  display: block;
}
.content-inner .comment_delete a {
  background: url('images/icons/comment_delete.gif') no-repeat;
  padding-bottom: 7px;
  padding-left: 20px;
  display: block;
}
.content-inner .comment_edit a {
  background:url('images/icons/comment_edit.gif') no-repeat;
  padding-bottom: 7px;
  padding-left: 20px;
  display: block;
}

roald’s picture

Thanks for your fix, that seemed to do the trick :-)

Roald

derekwebb1’s picture

Status: Fixed » Closed (fixed)