/* :before is a "pseudoelement" which lets us put something on the page (before or after an element, in this case, all buttons) using only CSS */
content: "►";
/* This has to be inline-block for the transform below to work */
display: inline-block;
color:#000;
font-family:Overpass, Georgia, Arial, Verdana;
font-size:18px;
position:relative;
top:0px;
left:0px;
cursor:pointer;
z-index:9999;
text-shadow:none;
}
And am having problems with it. The problem is that this code has given me 3 extra buttons which you can see here at the top left. My question is, how can I rid these buttons? I have heard something about scoping which can do this, but am not sure. I'm so new to that.