Skip to content

Instantly share code, notes, and snippets.

@samu1241
samu1241 / websymbols.css
Created September 20, 2012 07:07
CSS: WebSymbols Font
/**
* Stylesheet that implements WebSymbols font
* http://www.justbenicestudio.com/studio/websymbols/
*
* Autor Yordan Ivanov
* yordan.t.ivanov@gmail.com
*/
@font-face{
font-family: 'WebSymbolsRegular';
@samu1241
samu1241 / vc-rtl-fix.js
Created December 1, 2016 03:19 — forked from aliaghdam/visual-composer-rtl-fix.js
WordPress Visual Composer full width row ( stretche row ) fix for RTL
jQuery(document).ready(function() {
jQuery(document).on('vc-full-width-row', function () {
var $elements = jQuery('[data-vc-full-width="true"]');
jQuery.each($elements, function () {
var $el = jQuery(this);
$el.css('right', $el.css('left')).css('left', '');
});
});
});