Hi - I have installed:
Joomla 3.4.1 / CB 2.0.7 / Coolness Template 3.0.1
As you can see, the whole template is full of these ugly 'bullets'. How can I remove them? is there somewhere a 'setting' where I could switch this off?
regards
Attachments:
Last edit: 10 years 7 months ago by erichburkhard. Reason: no attachment
It shouldn't be that aggressive. At any rate the UL LI styling can be found below.
IN: templates/coolness/css/template.css
ON: Lines 42 - 51
Specially the below is adding the bullet image.
Code:
ul li { background: url(/../images/bullet.gif) no-repeat 0px 6px; padding-left:15px; }
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
Hi Kyle - THANKS ...it worked ... The only thing that disturbs me now is the very small frame around each menuitem....which line do I have to change /remove in the css to get these frames disappeared? regards
Right click and inspect one the of menu items in Chrome or Firefox. When you right click the context menu should open and have "Inspect Element" menu item. This will open the developer console on that menu item. This allows you to see the sites HTML structure and with it all of its styling element-by-element.
The frames could be from the template or possibly bootstrap. Most likely they're just a border, which you can remove by setting border to 0 as follows.
Code:
ul li,
ul li > a {
border: 0;
}
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.