Log in

View Full Version : Link Dots


voni
05-11-2014, 09:30 AM
Hi
try as i may i can't find the css to remove the link DOTS in the side menu, i know its somewhere simple and right in front of me but damn i just can't find it. So can anyone point me in the right direction?

the ones that look like this

. Adopt New Pets
. Acquire Pounded Pets
. Manage Adoptables
. Go to My Account
. Messages
. Change Themes
. Logout
. Admin Control Panel

sorry it was the only way i could describe it :)

voni
05-11-2014, 10:11 AM
ok i meant bullet points

usually its something like 'list-style-type: disc;'

its not in my template so i can only assume its dragging the format from some other place but i have no idea where

voni
05-11-2014, 10:22 AM
ul, menu, dir {
display: block;
list-style-type: disc;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
-webkit-padding-start: 40px;

I found this in inspect element..... but i can't find the code in the actual script to change it. Hope it makes things clearer

IntoRain
05-11-2014, 11:07 AM
Isn't that the default style for unordered lists? Maybe if you add the list style to none it will negate the affect

voni
05-11-2014, 12:24 PM
i tired adding a list styles, but in doing so it altered other things that haven't been made independent of 'li' or 'menu' so it kinds spoils the over all effect. I guess i could make an entirely new template but i was kinda hoping for a easy ride

IntoRain
05-11-2014, 01:06 PM
Those links are all inside the sidebar class, making it .sidebar ul{} will only affect ul inside that sidebar

voni
05-13-2014, 10:20 AM
Thanks! it worked looks much better now