Posted On July 3, 2020

How to Remove Question Mark ‘Info’ Button in SyntaxHighlighter

kimconnect 0 comments
blog.KimConnect.com >> Codes >> How to Remove Question Mark ‘Info’ Button in SyntaxHighlighter

If you’re looking for a way to remove this subtle, yet spammy link:

Do this:
Goto Dashboard > Appearance > Customize > Additional CSS

Simply paste this code:

.syntaxhighlighter .toolbar {
    /*color: white !important;
    background: #6ce26c !important;
    border: none !important;*/
    display: none;
}

Yo welcomed, homie.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Setting Windows Pagefile

# setPageFile.ps1 # Source: # Reposting here as such code seems to be open source…

Start All Automatic Services on Windows

Current version: # startAllAutoServices.ps1 # version 0.0.2 # Description: # - This script to scan…

PowerShell: Administering Network Time Protocol Settings on Windows

Quick Script of Domain Joined Laptops and Desktops for Remote Users: # Set Domain Joined…