[drupal] Problem in ie6 selecting text

[drupal] Problem in ie6 selecting text
0 votes, 0.00 avg. rating (0% score)

I wanted to use drupal theme friendselectric, and I really wanted visitors to copy texts from my site if necessary.

During the initial web search I found that by inserting XML tag in the first line of themes/friendselectric/page.tpl.php , selecting text supposed to work.

"; ?>

In the first look, it does appear solving the problem. However other layout design came out incorrectly.

So I spent some more time with the themes/friendselectric/style.css

And Luckily, I think I finally found the solution!!!!

My solution is commenting below “position:relative” line.
Do not use above XML tag, but instead open themes/friendselectric/style.css
and edit content-wrap entry commeting “position: relative;”


#content-wrap {
float: left;
/* position: relative; */
}

It does look OK & I am able to select the body text! (At least content body)

Leave a Reply

Your email address will not be published. Required fields are marked *