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: How To Bypass Double Hop Problems

# This is a working example of hoping without delegation. Fresh creds can be passed…

PowerShell: Quick EMCopy

# Short Version $arr=@(); $arr+=[PSCustomObject]@{From='D:\Someshare';To='\\NEWSERVER\Someshare'} $arr+=[PSCustomObject]@{From='D:\Test';To='\\NEWSERVER\Test'} # Normal copying # $arr|%{emcopy $_.From $_.To /s /de…

Veeam: Hyper-V ConfigStoreRootPath Errors

Error Message ---------------------------Veeam Backup and Replication---------------------------ConfigStoreRootPath cluster parameter is not defined. We will not be…