• taridonohue

    (@taridonohue)


    I sort of like the link dots next to the social icons in the footer. The client does not. I read a post from 4 years ago about removing them, but so far, nada.

    Happy to have some icons I can style, since this will not be their only iteration, but the dots have to go.

    Ideas?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor Nick C

    (@modernnerd)

    Hi, @taridonohue

    The “link dots” are coming from some CSS in the Divi theme in https://mercatus.wpengine.com/wp-content/themes/Divi/style.dev.css?ver=4.9.8 on line 2975:

    #footer-widgets .footer-widget li:before {
    	position: absolute;
    	top: 9px;
    	left: 0;
    	border-width: 3px;
    	border-style: solid;
    	-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
    	border-radius: 3px;
    	content: "";
    }
    

    The dots are not added by the Simple Social Icons plugin by default.

    You could remove them with CSS like this in Appearance → Customize → Additional CSS, or in the theme’s stylesheet.

    
    #footer-widgets .footer-widget .simple-social-icons li:before {
    	content: none;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘LinkDots next to Icons’ is closed to new replies.