css - hovering on text does not show the description properly -
hi everyone,
in sharepoint showing list of titles , on hover should show me description. somehow css cannot see description properly.
please find image on top , css below.
css:
<style> span.summary { position: relative; background: none transparent scroll repeat 0% 0%; } .ms-vb span.summary { background-color: #dfdfdf; } span.summary span { display: none; } span.summary a:hover { font-size: 100%; font-color: #000000; } span.summary a:hover span { display: block; position: absolute; margin-top: 10px; margin-left: -10px; width: 275px; padding: 5px; z-index: 900; color: #001a49; background: #dfdfdf; font: 12px "helvetica"; text-align: left; text-decoration: none; } .ms-alternating .ms-vb { background-color: #dfdfdf; } </style>
try solution provided in below link getting :hover work in ie7
if not work apply ie hack script hover readily available on net
Comments
Post a Comment