Click here to Skip to main content
15,904,024 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
My Menu CSS:

CSS
<style>
            .pkg-wrp{ float:left; padding:20px 0 20px 0; width: 788px; margin: 0;}
            .page-product-compare .pkg_wrp2 h2{ height: 107px; padding: 2px 0 0;  line-height: 142px;}.page-product-compare .pkg_wrp2 ul li{ height: 60px; margin:0px;}
            .pkg-wrp h2{ text-transform:uppercase; float:left; font:14px/18px 'geoslab703_xbd_btextra_bold';width:59px; text-align:center; height:58px; padding:29px 0px 0 0px;color:#086aa7;  background:url(images/pkg-h2.gif) 0 0 repeat-x; border:1px solid #e2e1e1; border-radius:4px 4px 0 0;-ms-border-radius:4px 4px 0 0; -webkit-border-radius:4px 4px 0 0;-0-border-radius:4px 4px 0 0;}
            .pkg-wrp ul{ float:left; padding:0; margin: 0;}
            .pkg-wrp ul li{   font:8px/9px 'geoslab703_xbd_btextra_bold'; float:left; font-family: 'geoslab703_xbd_btextra_bold';  font-size:14px; border:1px solid #e2e1e1; background:url(images/li-bg.gif) 0 0 repeat-x; border:1px solid #e2e1e1; height:98px; width:87px; text-align:center;
                              border-radius:4px 4px 0 0;-ms-border-radius:4px 4px 0 0; -webkit-border-radius:4px 4px 0 0;-0-border-radius:4px 4px 0 0; padding:0 0px;  margin: 0;}
            .pkg-wrp ul li span{ font-size: 15px; color:#fff;  text-transform:uppercase; line-height:23px; display:block; padding:20px 0 0 0;}
            .pkg-wrp ul li + li + li{background:url(images/package-gren-li.gif) 0 0 repeat-x; height:119px; margin:-21px 0 0 0; position:relative; }
            .pkg-wrp ul li + li + li:before{ background:url(images/most.png) no-repeat; height:159px; width:72px; content:""; position:absolute; left:0; display:block;}
            .pkg-wrp ul li + li + li span{ line-height:46px; padding:30px 0 0 0;}
            .pkg-wrp ul li + li + li p{ line-height:1px;}
            .pkg-wrp ul li + li + li + li{background:url(images/li-bg.gif) 0 0 repeat-x; height:98px; margin:0px;}
            .pkg-wrp ul li + li + li + li:before{ background:none;}
            .pkg-wrp ul li + li + li + li span{font-size: 15px; color:#fff;  text-transform:uppercase; line-height:23px; display:block; padding:20px 0 0 0;}
            .pkg-wrp ul li + li + li + li p{font:17px/18px 'geoslab703_xbd_btextra_bold';}
            .pkg-wrp ul li p{ color:#fff;   font:17px/17px 'geoslab703_xbd_btextra_bold'; }
            .page-product-compare .pkg_wrp2 ul li p{font:21px/32px 'geoslab703_xbd_btextra_bold';}
            .pkg-wrp table:before{ height:0; width:100%; display:block; content:"";}
            .pkg-wrp table{}
            .pkg-wrp table tr td:first-child{width:190px; border-left:1px solid #e7e7e7; }
            .pkg-wrp table tr td{ color:#646a71;  font:13px/15px "latoregular";width:147px; text-align:center;  padding:16px 0; }
                                  ul#menu-packages-sidebar li#menu-item-2072 a:before {background-position: -223px 0;}
            
            .pkg-wrp .content-writing h2{ width: 304px;}
            .pkg-wrp .content-writing ul li{width: 239px;}	
        </style>


My HTML CODE:

HTML
<body>
        <div class="page-product-compare">
            <div class="pkg-wrp">
                <h2>Website Design Packages </h2>
                <ul>
                    <li><span>Starter</span>
                        <p>$550</p>
                    </li>
                    <li><span>Eco Starter 	</span>
                        <p>$750</p>
                    </li>
                    <li><span>Silver</span>
                        <p>$1000</p>
                    </li>
                    <li><span>Gold</span>
                        <p>$1300</p>
                    </li>
                    <li><span>Starter</span>
                        <p>$550</p>
                    </li>
                    <li><span>Eco Starter 	</span>
                        <p>$750</p>
                    </li>
                    <li><span>Silver</span>
                        <p>$1000</p>
                    </li>
                    <li><span>Gold</span>
                        <p>$1300</p>
                    </li>
                </ul>
            </div>
        </div>
    </body>


Problem:
It's showing . sign in the side of the menu. How can I hide the Dot sign ?
Please help me.

Thanks for advance.
Posted
Comments
[no name] 15-Jul-13 12:23pm    
That is what <ul> does.
UL UL ALBAB 15-Jul-13 12:26pm    
hum. How can set ul style to avoid this ?
[no name] 15-Jul-13 12:34pm    
Why don't you try removing the <ul> tags?
UL UL ALBAB 15-Jul-13 12:53pm    
than which tag I have to use ?

1 solution

Use CSS: list-style: none;

Hope this will help you. :-)
 
Share this answer
 
Comments
UL UL ALBAB 15-Jul-13 12:55pm    
I have used in my HTML : <ul style="list-style: none;">

Thank you.
Sergey Alexandrovich Kryukov 17-Jul-13 13:29pm    
Correct, a 5.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900