Just wrap your code in [language], such as
[php]code here[/php]
or
[css]code here[/css]
For a list of supported languages (all widely used languages are supported), please click here.
[css]
/* mobile menu fixed on scroll */
@media only screen and (max-width : 980px) {
.et_fixed_nav #main-header {
position: fixed !important;
top: 0 !important;}}
[/css]
[css]
/* image animations and border radius */
img {
border-radius: 9px;
-moz-transition: all 0.09s;
-webkit-transition: all 0.09s;
transition: all 0.09s;
-webkit-filter:
drop-shadow(5px 5px 5px black);}
img:hover {
-webkit-transform: scale(1.15);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);}
[/css]
Recent Comments