Hi all,
As I have had 0 responses regarding my Search Module question I have come to the conclusion that no-one knows how to modify this module and what I was asking was not possible. So as the search module pulls it main text from the pages I want to add a hidden line of text at the top of each HTML module ont eh page.
I am trying to place hidden text using CSS and DIV tags, but for some stupid reason the HTMl module is ignoring my CSS. Here is what I have
CSS called SearchText.css
.SearchText {
/* Hide Search Text; */
.hidden
{position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;}
}
Then the HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<link rel="stylesheet" href="http://www.loreofmythos2.com/Portals/0/css/SearchText.css"
type="text/css" media="all"/>
<head>
</head>
<body>
<div id="hidden">A look in to the Lore of the Humans and read about the indomitable spirit of the Krytan people in the face of rampaging centaurs, looting bandits, and political intrigue</div>
<table border="0">
<tr>
<td>
<img src="http://www.loreofmythos2.com/portals/0/Images/Races/human.jpg" />
</td>
</tr>
<tr>
<td>
The humans of Tyria are an embattled race. Over the past three hundred years, they
have lost much of their territory. Old enemies and new races threaten traditional
human lands on all sides. Yet the human race survives, defending their remaining
As you can see I want the text inside teh DIV tag to be hidden, that way this is the text that will appear in the Search results on my site. Please can anyone help me sort this out.
Thanks