This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.header_color .header_bg {background: transparent;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.language_el .language_flag:before {content: 'Greek';} | |
.language_en .language_flag:before {content: 'English';} | |
.avia_wpml_language_switch li .language_flag img {display: none;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table {overflow: auto!important; display: block!important;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {background: red; color: #ffffff;} | |
.main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), .main_color .pricing-extra {background: black; color: #ffffff;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RTL SUPPPORT | |
add_action( 'wp_enqueue_scripts', 'wp_enqueue_scripts_mod', 20 ); | |
function wp_enqueue_scripts_mod() { | |
$template_url = get_template_directory_uri(); | |
wp_dequeue_style( 'avia-rtl' ); | |
wp_deregister_style( 'avia-rtl' ); | |
if ( is_rtl() || 'ar' == ICL_LANGUAGE_CODE ) { | |
wp_enqueue_style( 'avia-rtl', $template_url."/css/rtl.css", array(), '1', 'all' ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// POST SLIDER EXCERPT LENGTH | |
add_filter('avf_postgrid_excerpt_length','avia_change_excerpt_length',10,1); | |
function avia_change_excerpt_length() | |
{ | |
return 100; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nav.sub_menu {width: 100%;} | |
ul#avia2-menu {float: right!important;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'avf_load_google_map_api', '__return_false' ); |
NewerOlder