Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file unwanted quotes between A, b, c url icons

More
11 years 7 months ago #866 by alain64
Hello,
I would like to know how avoid unwanted quotes between icons of url A, B, C... whatever the style (original or style n°1) applied as shown on attached pic.
Thank for your help
Alain
Attachments:

Please Log in or Create an account to join the conversation.

More
11 years 7 months ago #869 by admin
Hello Alain,
can you give me a live URL so I can check this out? This probably is a CSS issue. The list of links has a list-style property set to none, but it may be overwritten by your template.
Try out
.trombinoscopeextended_[your module ID or component] .links ul li {
    list-style: none !important;
}
That should fix it.

Olivier.

Please Log in or Create an account to join the conversation.

More
11 years 7 months ago - 11 years 7 months ago #873 by alain64
Replied by alain64 on topic Re: unwanted quotes between A, b, c url icons
Hello
I've added your following code in template css ( template:youedition, color template : blue.css, default template :template.css, N°id of plugin: 10051) as you told me :
.trombinoscopeextended_[10051] .links ul li {
list-style: none !important;
}
without any success
url : builtcpnt.fr/index.php/bureau-national (right side item of menu bar)

regards
Alain
Last edit: 11 years 7 months ago by admin.

Please Log in or Create an account to join the conversation.

More
11 years 7 months ago #874 by admin
Alain,
the proper syntax is :
.trombinoscopeextended_10051 .links ul li {
Check the source code of the page to make sure your syntax is correct :-) You should find similar CSS properties in it. It is a way of making sure you did the right thing. Sorry if I misled you with the [], it was just to separate my comment from the actual code.

Olivier.

Please Log in or Create an account to join the conversation.

More
11 years 7 months ago #875 by admin
ok, I checked your website. The problem does come from li, but it is because the template adds a background image to it. Add instead:
.trombinoscopeextended_component .links ul li {
    background: none;
    padding-left: 0;
}

Add !important if needed.

Olivier.
The following user(s) said Thank You: alain64

Please Log in or Create an account to join the conversation.

More
11 years 7 months ago #876 by admin
You can now remove the login and pwd you set up for me :-)

Olivier.

Please Log in or Create an account to join the conversation.