Skip to main content
Help

Original post by: Blake Klein

Text:

@filip you can hide the text box completely with the CSS below, however, that would apply site wide:

[code]
/* hide guide step content box */

.column.step-content {

    display: none;

}
[/code]

or you could make the bullet and corresponding text appear white which would make it invisible. (the red bullet would be replaced in this example):

[code]
/* hide bullet from main guide but show in editing */

.level-0 .fa.fa-circle.bullet.bullet_red {

    display: none;

}

/* change color of guide text to match bullet */

.bullet.bullet_red + p {

    color: white;

 }
[/code]

Status:

open
TRUSTe