Forum Moderators: not2easy
<b>1</b> <br />
<br />
How to get a gas connection? <br />
<br />
Question 2 <br />
<br />
Question 3 <br />
</td>
<td>
<b>2</b> <br />
<br />
How to get a telephone connection? <br />
<br />
Question 2 <br />
<br />
Question 3 <br />
</td>
</tr>
</table>
</td>
<td class="dirright"> </td>
</tr>
</table>
</div>
</div>
Here is the css part for the relavent div:
#bodyContent {
position:relative;
padding: 0px;
border:0px solid #CCC;
clear:left;
padding-top:8px;
}
#bodyContent h1 {
background-color:#606060;
color:#FFF;
font-size:14px;
font-family: Verdana, Geneva, sans-serif;
font-weight:bold;
padding:10px;
text-transform:capitalize;
margin:5px 0;
border:1px solid #333;
}
#dir-folder {
margin:0px;
padding:0px;
}
#dir-folder {
height:234px;
border:0px solid #666;
width:100%;
float:left;/*background-image:url(images/dir-bg.png);
background-position:top left;
background-repeat:repeat-x;
*/
}
#dir-folder {
padding-top:10px;
}
#dir-folder .dirleft {
height:234px;
width:14px;
background-image:url(images/dir-left.png);
background-position:top left;
background-repeat:no-repeat;
}
* html #dir-folder .dirleft {
background:none;
filter: progid:dximagetransform.microsoft.alphaimageloader(src='images/dir-left.png', sizingmethod='crop');
}
#dir-folder .dirright {
height:234px;
width:18px;
background-image:url(images/dir-right.png);
background-position:top left;
background-repeat:no-repeat;
}
* html #dir-folder .dirright {
background:none;
filter: progid:dximagetransform.microsoft.alphaimageloader(src='images/dir-right.png', sizingmethod='crop');
}
#dir-folder .dir {
background-image:url(images/dir-bg.png);
background-position:top left;
background-repeat:repeat-x;
padding:10px 0px;
}
* html #dir-folder .dir {
background:none;
filter: progid:dximagetransform.microsoft.alphaimageloader(src='images/dir-bg.png', sizingmethod='scale');
}
I am sorry if i posted some additional code. I am very new to css. Please help me out. Thanks.
[edited by: BinaryBird at 7:51 pm (utc) on Dec. 29, 2008]
<a href="#">Link text</a>, the display is : ________ .To clarify, are you saying that in the links you are trying to add you can't see the text between the <a>'s, but you can see only an "underline", or are you saying you can see text with an underline?
I second the suggestion to start by validating the html and css, and then using Firebug in Firefox to inspect the <a>'s you are trying to add (plus other elements). However, you have said you are new to css, so maybe helpful to look at the Css Crash Course [webmasterworld.com] before you do.
I think he is defined certain styles for the <a> tag which i am not able to figure out.See Part 4 which how to style links under "anchor Pseudo Classes".
But the links in the other part of the page are working perfectly.There could be a number of reasons for that, but read about selectors and specificity in Part 2.
have fun, and post back the css for the links if nothing helps ;)
@g1smd
I would make sure the HTML uses proper block elements to enclose the content (i.e. no "anonymous" blocks),Can you explain the reasoning for this?