Change font and formatting for 'Code' typography

Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Sat Mar 28, 2015 3:46 am
Reply with quote
Report this post
Good morning,
I'd like to modify the existing typography for code wrapper (screen cap attached)
    change font size to 16pt
    change font type to match floated blocks text
    remove top and bottom grey line
Can you give me the override please?
Kind regards
Drew
User avatar
Gold Boarder

GK User
Sun Mar 29, 2015 8:48 am
Reply with quote
Report this post
Hi,
here is default CSS code, now it's your turn
Code: Select all
pre, code {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #e5e5e5 #e5e5e5 #e5e5e5 #1dbaf4;
    border-image: none;
    border-style: solid;
    border-width: 1px 1px 1px 5px;
    color: #383637;
    padding-left: 32px;
}
pre, code {
    background: none repeat scroll 0 0 #fff;
    font: 0.92em/32px "Curier New",monospace !important;
    margin: 36px 0 !important;
    padding: 20px 26px !important;
}

pre, code, kbd, samp {
    font-family: monospace,serif;
    font-size: 1em;
}
User avatar
Platinum Boarder

GK User
Sun Mar 29, 2015 11:04 am
Reply with quote
Report this post
Oscar E wrote:Hi,
here is default CSS code, now it's your turn
Code: Select all
pre, code {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #e5e5e5 #e5e5e5 #e5e5e5 #1dbaf4;
    border-image: none;
    border-style: solid;
    border-width: 1px 1px 1px 5px;
    color: #383637;
    padding-left: 32px;
}
pre, code {
    background: none repeat scroll 0 0 #fff;
    font: 0.92em/32px "Curier New",monospace !important;
    margin: 36px 0 !important;
    padding: 20px 26px !important;
}

pre, code, kbd, samp {
    font-family: monospace,serif;
    font-size: 1em;
}


thank you
User avatar
Gold Boarder


cron