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

Basic HTML and HTML5: Create a Form Element

<h2>CatPhotoApp</h2><main><p>Click here to view more <a href="#">cat photos</a>.</p><a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying…

PowerShell: Check RPC Reachability of Remote Computer

# This is an ancient script that would work with PowerShell versions 2 to 5,…

PowerShell: Convert Between Various SSL Certificate Formats

# Install Choco (look for instructions in this blog)# Install openssl.lightchoco install openssl.light -y #…