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
body::-webkit-scrollbar { | |
width: 12px; /* width of the entire scrollbar */ | |
} | |
body::-webkit-scrollbar-track { | |
background: #e0e0d5; /* color of the tracking area */ | |
} | |
body::-webkit-scrollbar-thumb { | |
background-color: grey; /* color of the scroll thumb */ |
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
/*Remove WordPress menu from admin bar*/ | |
add_action( 'admin_bar_menu', 'remove_wp_logo', 999 ); | |
function remove_wp_logo( $wp_admin_bar ) { | |
$wp_admin_bar->remove_node( 'wp-logo' ); | |
} | |
/* Remove WP logo from login page */ | |
function custom_login_logo() { | |
echo '<style type ="text/css">.login h1 a { display:none!important; }</style>'; | |
} |
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
<div id="register-page" class="page register-page"> | |
<aside class="bp-feedback bp-messages info"> | |
<span class="bp-icon" aria-hidden="true"></span> | |
<p>Registering for this site is easy. Just fill in the fields below, and we’ll get a new account set up for you in no time.</p> | |
</aside> | |
<form action="" name="signup_form" id="signup-form" class="standard-form signup-form clearfix" method="post" enctype="multipart/form-data"> |
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
$(document).ready(function(){ | |
$(window).scroll(function(){ | |
var light_pos = $('#white_div').offset().top; | |
var light_height = $('#white_div').height(); | |
var menu_pos = $('.NavigationButton').offset().top; | |
var scroll = $(window).scrollTop(); | |
if(menu_pos > light_pos && menu_pos < (light_pos + light_height)) { | |
$('.NavigationButton').addClass('menu_black'); | |
$('.NavigationButton').removeClass('menu_white'); |
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
<div class="elementor-element elementor-element-757f2c elementor-column elementor-col-100 elementor-top-column" data-id="757f2c" data-element_type="column"> | |
<div class="elementor-column-wrap elementor-element-populated"> | |
<div class="elementor-widget-wrap"> | |
<div class="elementor-element elementor-element-4aae1b5 elementor-headline--style-highlight elementor-widget elementor-widget-animated-headline" data-id="4aae1b5" data-element_type="widget" data-settings="{"highlighted_text":"\u0627\u0644\u062d\u0648\u0643\u0645\u0629 \u0627\u0644\u0645\u062d\u0644\u064a\u0629","headline_style":"highlight","marker":"circle"}" data-widget_type="animated-headline.default"> | |
<div class="elementor-widget-container"> | |
<h3 class="elementor-headline"> | |
<span class="elementor-headline-dynamic-wrapper elementor-headline-text-wrapper"><span class="elementor-headline-dynamic-text elementor-headline-text-active">الحوكمة |
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
<div class="slick-list draggable"><div class="slick-track" style="opacity: 1; width: 5390px; transform: translate3d(770px, 0px, 0px);"><div class="elementor-repeater-item-5dc6afb slick-slide slick-cloned" data-slick-index="-1" aria-hidden="true" style="width: 770px;" tabindex="-1"><div class="slick-slide-bg"></div><div class="slick-slide-inner"><div class="elementor-slide-content" style="display: none;"></div></div></div><div class="elementor-repeater-item-392183e slick-slide slick-current slick-active" data-slick-index="0" aria-hidden="false" style="width: 770px;" tabindex="0" role="tabpanel" id="slick-slide00" aria-describedby="slick-slide-control00"><div class="slick-slide-bg"></div><div class="slick-slide-inner"><div class="elementor-slide-content animated fadeInUp" style="display: block;"></div></div></div><div class="elementor-repeater-item-b9f8f63 slick-slide" data-slick-index="1" aria-hidden="true" style="width: 770px;" tabindex="-1" role="tabpanel" id="slick-slide01" aria-describedby="slick-slide-con |
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
<?php | |
add_filter('woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text'); | |
function woo_custom_cart_button_text() | |
{ | |
return __('Book Now', 'woocommerce'); | |
} |
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
img[src="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] { | |
display: none; | |
} | |
/////////////html | |
<style> | |
img[src="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] { | |
display: none; | |
} | |
</style> |