Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Remove list bullets
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Remove list bullets
#4565
Remove list bullets 14 Years, 1 Month ago Karma: 0
Hey there,

I am trying to remove the list bullet in my ARI Ext Menu, but I can't seem to get it right. Unfortunately, I'm quite the rookie when it comes to CSS, but I assume it's not too big a fix. Any help would be sincerely appreciated.

Thanks in advance,

Segia

Link: nsnwn.gofreeserve.com
The administrator has disabled public write access.
 
#4566
Re:Remove list bullets 14 Years, 1 Month ago Karma: 748
Hello,

Add the following CSS rule to template CSS file:

Code:


.ux-menu-container UL LI
{
  margin: 0;
  list-style-type:none;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#19027
Re:Remove list bullets 12 Years, 10 Months ago Karma: 0
Witam!

Czy istnieje jakis sposob na wylaczenie tla listy bez wyrzucania deklaracji z szablonu witryny?

caly czas pokazuje sie bullet probowalem powyzszego sposobu jednak bez skutku.


moja deklaracja w szablonie:


ul li {
background: url(../images/bullet.gif) no-repeat 18px 7px;
line-height: 160%;
padding-left: 30px;
}


deklaracja w pliku menu.min

.ux-menu-container ul li {
margin: 0;
list-style-type:none!important;
list-style: none!important;
}

Link do zrzutu ekranu:

www.wypasionastrona.pl/menu.png

Pozdrawiam

In English

I still have a problem with my menu

In my template style I have ul li declaration and i don't want to change and remove that. Is there any idea how to remove bullet style from menu?

My template declaration are:
ul li {
background: url(../images/bullet.gif) no-repeat 18px 7px;
line-height: 160%;
padding-left: 30px;
}

My menu.min file:
.ux-menu-container ul li {
margin: 0;
list-style-type:none!important;
list-style: none!important;
}

Print screen:

www.wypasionastrona.pl/menu.png

Best regards!
Last Edit: 2011/08/31 22:11 By Jumpman.
The administrator has disabled public write access.
 
#19039
Re:Remove list bullets 12 Years, 10 Months ago Karma: 748
Hello,

Try to add the next CSS rule:

Code:


ul.ux-menu li
{
 background-image: none;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1