Skip to:
Content
Pages
Categories
Search
Top
Bottom

CODE Tags Feature Request


  • posemotion
    Participant

    @posemotion

    The use of actual [code][/code] tags that everyone is familiar with. Smaller font or font size option for the code tags. Word wrap for the code tags.

    Thanks!

Viewing 1 replies (of 1 total)

  • posemotion
    Participant

    @posemotion

    I was able to edit the style.css to get what I was looking for. Line 207. Compare and change.

    code,
    kbd,
    tt,
    var,
    samp,
    pre {
    	font-family: monospace, serif;
    	font-size: 10px;
    	-webkit-hyphens: none;
    	-moz-hyphens:    none;
    	-ms-hyphens:     none;
    	hyphens:         none;
    	line-height: 1.6;
    }
    
    code,
    pre {
    	border: 1px solid rgba(0, 0, 0, 0.1);
    	-webkit-box-sizing: border-box;
    	-moz-box-sizing:    border-box;
    	box-sizing:         border-box;
    	margin-bottom: 24px;
    	max-width: 100%;
    	overflow: auto;
    	padding: 12px;
    	white-space: pre;
    	white-space: pre-wrap;
    	word-wrap: break-word;
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar