Advertisement
Guest User

For Ariel

a guest
Nov 23rd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.59 KB | None | 0 0
  1. <?php
  2. if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  3.  
  4. $logo_img = get_theme_mod( 'image_logo' ); // Getting from option your choice.
  5. $sticky_logo_img = get_theme_mod( 'image_sticky_header_logo' ); // Getting from option your choice.
  6. if ( ! $sticky_logo_img )
  7. $sticky_logo_img = $logo_img;
  8.  
  9. ?><!DOCTYPE html>
  10. <!--[if lt IE 7]>
  11. <html class="no-js lt-ie9 lt-ie8 lt-ie7" <?php language_attributes(); ?>> <![endif]-->
  12. <!--[if IE 7]>
  13. <html class="no-js lt-ie9 lt-ie8" <?php language_attributes(); ?>> <![endif]-->
  14. <!--[if IE 8]>
  15. <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]-->
  16. <!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
  17. <head>
  18. <meta charset="utf-8" />
  19. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  20. <base href="<?php echo site_url(); ?>" />
  21. <title><?php wp_title( '|', true, 'right' ); ?></title>
  22. <?php wp_head(); ?>
  23. </head>
  24. <body <?php body_class(); ?>>
  25. <!--[if lt IE 7]><p class="chromeframe">Your browser is <em>ancient!</em>
  26. <a href="http://browsehappy.com/">Upgrade to a different browser</a> or
  27. <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.
  28. </p><![endif]-->
  29.  
  30. <?php if ( ! pojo_is_blank_page() && get_theme_mod( 'chk_enable_outer_slidebar' ) ) : ?>
  31. <div id="outer-slidebar">
  32. <div id="outer-slidebar-overlay">
  33. <div class="slidebar-overlay-inner">
  34. <div class="<?php echo WRAP_CLASSES; ?>">
  35. <div class="<?php echo CONTAINER_CLASSES; ?>">
  36. <?php dynamic_sidebar( 'pojo-' . sanitize_title( 'Outer Slidebar' ) ); ?>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. <div id="outer-slidebar-toggle">
  42. <a href="javascript:void(0);"></a>
  43. </div>
  44. </div>
  45. <?php endif; // end blank page ?>
  46.  
  47. <div id="container">
  48. <?php po_change_loop_to_parent( 'change' ); ?>
  49.  
  50. <?php if ( ! pojo_is_blank_page() ) : ?>
  51. <section id="top-bar">
  52. <div class="<?php echo WRAP_CLASSES; ?>">
  53. <div class="pull-left">
  54. <?php dynamic_sidebar( 'pojo-' . sanitize_title( 'Top Bar Left' ) ); ?>
  55. </div>
  56. <div class="pull-right">
  57. <?php dynamic_sidebar( 'pojo-' . sanitize_title( 'Top Bar Right' ) ); ?>
  58. </div>
  59. </div><!-- .<?php echo WRAP_CLASSES; ?> -->
  60. </section>
  61. <header id="header">
  62. <div class="container">
  63. <div class="logo" role="banner">
  64. <?php if ( ! empty( $logo_img ) ) : ?>
  65. <div class="logo-img pull-left">
  66. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img src="<?php echo $logo_img; ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
  67. </div>
  68. <?php else : ?>
  69. <div class="logo-text pull-left">
  70. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  71. </div>
  72. <?php endif; ?>
  73.  
  74. <button type="button" class="navbar-toggle visible-xs" data-toggle="collapse" data-target=".navbar-collapse">
  75. <span class="sr-only"><?php _e( 'Toggle navigation', 'pojo' ); ?></span>
  76. <span class="icon-bar"></span>
  77. <span class="icon-bar"></span>
  78. <span class="icon-bar"></span>
  79. </button>
  80. </div>
  81. <nav class="nav-main">
  82. <div class="navbar-collapse collapse" role="navigation" >
  83. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  84. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'container' => false, 'menu_class' => 'sf-menu hidden-xs', 'walker' => new Pojo_Navbar_Nav_Walker() ) );
  85. wp_nav_menu( array( 'theme_location' => has_nav_menu( 'primary_mobile' ) ? 'primary_mobile' : 'primary', 'container' => false, 'menu_class' => 'mobile-menu visible-xs', 'walker' => new Pojo_Navbar_Nav_Walker() ) ); ?>
  86. <?php else : ?>
  87. <mark class="menu-no-found"><?php printf( __( 'Please setup Menu <a href="%s">here</a>', 'pojo' ), admin_url( 'nav-menus.php?action=locations' ) ); ?></mark>
  88. <?php endif; ?>
  89. </div>
  90. </nav><!--/#nav-menu -->
  91. </div><!-- /.container -->
  92. </header>
  93. <?php if ( get_theme_mod( 'chk_enable_sticky_header' ) ) : ?>
  94. <div class="sticky-header">
  95. <div class="container">
  96. <div class="logo" role="banner">
  97. <?php if ( ! empty( $sticky_logo_img ) ) : ?>
  98. <div class="logo-img pull-left">
  99. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img src="<?php echo esc_attr( $sticky_logo_img ); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
  100. </div>
  101. <?php else : ?>
  102. <div class="logo-text pull-left">
  103. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  104. </div>
  105. <?php endif; ?>
  106.  
  107. <button type="button" class="navbar-toggle visible-xs" data-toggle="collapse" data-target=".navbar-collapse">
  108. <span class="sr-only"><?php _e( 'Toggle navigation', 'pojo' ); ?></span>
  109. <span class="icon-bar"></span>
  110. <span class="icon-bar"></span>
  111. <span class="icon-bar"></span>
  112. </button>
  113. </div>
  114. <nav class="nav-main">
  115. <div class="navbar-collapse collapse" role="navigation" >
  116. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  117. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'container' => false, 'menu_class' => 'sf-menu hidden-xs', 'walker' => new Pojo_Navbar_Nav_Walker() ) );
  118. wp_nav_menu( array( 'theme_location' => has_nav_menu( 'primary_mobile' ) ? 'primary_mobile' : 'primary', 'container' => false, 'menu_class' => 'mobile-menu visible-xs', 'walker' => new Pojo_Navbar_Nav_Walker() ) ); ?>
  119. <?php else : ?>
  120. <mark class="menu-no-found"><?php printf( __( 'Please setup Menu <a href="%s">here</a>', 'pojo' ), admin_url( 'nav-menus.php?action=locations' ) ); ?></mark>
  121. <?php endif; ?>
  122. </div>
  123. </nav><!--/#nav-menu -->
  124. </div><!-- /.container -->
  125. </div>
  126. <div class="sticky-header-running"></div>
  127. <?php endif; ?>
  128. <?php endif; // end blank page ?>
  129.  
  130. <?php po_change_loop_to_parent(); ?>
  131. <?php get_template_part( 'core/subheader' ); ?>
  132. <!-- START REVOLUTION SLIDER 4.6.0 fullwidth mode -->
  133. <div style="position:relative;width:100%;height:auto;margin-top:0px;margin-bottom:0px" class="forcefullwidth_wrapper_tp_banner"><div id="rev_slider_6_1_wrapper"
  134.  
  135. class="rev_slider_wrapper fullwidthbanner-container" style="margin: 0px auto; padding: 0px; max-height: 181px; height: 181px; left: 0px; position: absolute; width: 1899px;
  136.  
  137. overflow: visible; background-color: rgb(255, 255, 255);">
  138. <div id="rev_slider_6_1" class="rev_slider fullwidthabanner revslider-initialised tp-simpleresponsive" style="max-height: 181px; height: 181px; background-image: none;
  139.  
  140. background-color: rgb(255, 255, 255);">
  141. <ul style="display: block; overflow: hidden; width: 100%; height: 100%; max-height: 181px;"> <!-- SLIDE -->
  142. <li data-transition="fade" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" style="width: 100%; height: 100%; overflow: hidden; z-index: 18;
  143.  
  144. visibility: hidden; opacity: 0;" class="active-revslide">
  145. <!-- MAIN IMAGE -->
  146. <div class="slotholder" style="width:100%;height:100%;" data-duration="undefined" data-zoomstart="undefined" data-zoomend="undefined" data-
  147.  
  148. rotationstart="undefined" data-rotationend="undefined" data-ease="undefined" data-bgpositionend="undefined" data-bgposition="center center" data-kenburns="undefined"
  149.  
  150. data-easeme="undefined" data-bgfit="cover" data-bgfitend="undefined" data-owidth="undefined" data-oheight="undefined"><div class="tp-bgimg defaultimg" data-
  151.  
  152. lazyload="undefined" data-bgfit="cover" data-bgposition="center center" data-bgrepeat="no-repeat" data-lazydone="undefined" src="http://lulik.tempurl.co.il/Lulik/wp-
  153.  
  154. content/uploads/2014/11/header.jpg" data-src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg" style="width: 100%; height: 100%; opacity: 1; visibility:
  155.  
  156. inherit; background-image: url(http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg); background-color: rgba(0, 0, 0, 0); background-size: cover; background-
  157.  
  158. position: 50% 50%; background-repeat: no-repeat;"></div></div>
  159. <!-- LAYERS -->
  160.  
  161. <!-- LAYER NR. 1 -->
  162. <div class="tp-caption tp-fade start" data-x="center" data-hoffset="0" data-y="-30" data-speed="300" data-start="0" data-easing="Power3.easeInOut"
  163.  
  164. data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 2; left: -150.5px; top: -30px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0,
  165.  
  166. 0, 0, 1, 0, 0, 0, 0, 1, -0.00166, 0, 0, 0, 1);"><img src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/revslider/home1/shadow.png" alt="" data-ww="2200" data-hh="10"
  167.  
  168. style="width: 2200px; height: 10px;">
  169. </div>
  170.  
  171. <!-- LAYER NR. 2 -->
  172. <div class="tp-caption Atlanta1 skewfromleft tp-resizeme start" data-x="268" data-y="center" data-voffset="-54" data-speed="300" data-start="800" data-
  173.  
  174. easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 3; white-
  175.  
  176. space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding: 7px 16px;
  177.  
  178. letter-spacing: 0px; font-size: 28px; left: 717.5px; top: 9.5px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0, 0, 0.99619, 0.08715, 0, 0, 0, 0, 1, -0.00166, -380, 0, 0,
  179.  
  180. 1);">ברוכים הבאים לאתר של לוליק
  181. </div>
  182.  
  183. <!-- LAYER NR. 3 -->
  184. <div class="tp-caption Atlanta1 skewfromleft tp-resizeme start" data-x="302" data-y="center" data-voffset="6" data-speed="300" data-start="1000" data-
  185.  
  186. easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 4; white-
  187.  
  188. space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding: 7px 16px;
  189.  
  190. letter-spacing: 0px; font-size: 28px; left: 751.5px; top: 69.5px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0, 0, 0.99619, 0.08715, 0, 0, 0, 0, 1, -0.00166, -293, 0, 0,
  191.  
  192. 1);">מתנות שילדים אוהבים
  193. </div>
  194.  
  195. <!-- LAYER NR. 4 -->
  196. <div class="tp-caption Atlanta1 skewfromleft tp-resizeme start" data-x="337" data-y="center" data-voffset="66" data-speed="300" data-start="1200" data-
  197.  
  198. easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 5; white-
  199.  
  200. space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding: 7px 16px;
  201.  
  202. letter-spacing: 0px; font-size: 28px; left: 786.5px; top: 129.5px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0, 0, 0.99619, 0.08715, 0, 0, 0, 0, 1, -0.00166, -218, 0, 0,
  203.  
  204. 1);">מתנות מרהיבות
  205. </div>
  206. </li>
  207. <!-- SLIDE -->
  208. <li data-transition="fade" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" style="width: 100%; height: 100%; overflow: hidden; z-index: 18;
  209.  
  210. visibility: hidden; opacity: 0;" class="active-revslide">
  211. <!-- MAIN IMAGE -->
  212. <div class="slotholder" style="width:100%;height:100%;" data-duration="undefined" data-zoomstart="undefined" data-zoomend="undefined" data-
  213.  
  214. rotationstart="undefined" data-rotationend="undefined" data-ease="undefined" data-bgpositionend="undefined" data-bgposition="center center" data-kenburns="undefined"
  215.  
  216. data-easeme="undefined" data-bgfit="cover" data-bgfitend="undefined" data-owidth="undefined" data-oheight="undefined"><div class="tp-bgimg defaultimg" data-
  217.  
  218. lazyload="undefined" data-bgfit="cover" data-bgposition="center center" data-bgrepeat="no-repeat" data-lazydone="undefined" src="http://lulik.tempurl.co.il/Lulik/wp-
  219.  
  220. content/uploads/2014/11/header.jpg" data-src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg" style="width: 100%; height: 100%; opacity: 1; visibility:
  221.  
  222. inherit; background-image: url(http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg); background-color: rgba(0, 0, 0, 0); background-size: cover; background-
  223.  
  224. position: 50% 50%; background-repeat: no-repeat;"></div></div>
  225. <!-- LAYERS -->
  226.  
  227. <!-- LAYER NR. 1 -->
  228. <div class="tp-caption tp-fade start" data-x="center" data-hoffset="0" data-y="-30" data-speed="300" data-start="0" data-easing="Power3.easeInOut"
  229.  
  230. data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 2; left: -150.5px; top: -30px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0,
  231.  
  232. 0, 0, 1, 0, 0, 0, 0, 1, -0.00166, 0, 0, 0, 1);"><img src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/revslider/home1/shadow.png" alt="" data-ww="2200" data-hh="10"
  233.  
  234. style="width: 2200px; height: 10px;">
  235. </div>
  236.  
  237. <!-- LAYER NR. 2 -->
  238. <div class="tp-caption skewfromleft start" data-x="338" data-y="2" data-speed="300" data-start="800" data-easing="Power3.easeInOut" data-
  239.  
  240. elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 3; left: 787.5px; top: 2px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0, 0,
  241.  
  242. 0.99619, 0.08715, 0, 0, 0, 0, 1, -0.00166, -179, 0, 0, 1);"><img src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/logo-fix.jpg" alt="" data-
  243.  
  244. ww="163.8655462184874" data-hh="65" style="width: 163.865546218487px; height: 65px;">
  245. </div>
  246.  
  247. <!-- LAYER NR. 3 -->
  248. <div class="tp-caption Atlanta_lulik skewfromleft tp-resizeme start" data-x="187" data-y="center" data-voffset="4" data-speed="300" data-start="1000"
  249.  
  250. data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 4;
  251.  
  252. white-space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding:
  253.  
  254. 0px; letter-spacing: 0px; font-size: 35px; left: 636.5px; top: 74.5px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0, 0, 0.99619, 0.08715, 0, 0, 0, 0, 1, -0.00166, -497, 0, 0,
  255.  
  256. 1);">צילום מקצועי בגני ילדים ובתי ספר
  257. </div>
  258.  
  259. <!-- LAYER NR. 4 -->
  260. <div class="tp-caption Atlan skewfromleft tp-resizeme start" data-x="185" data-y="center" data-voffset="54" data-speed="300" data-start="1200" data-
  261.  
  262. easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 5; white-
  263.  
  264. space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding: 7px 16px;
  265.  
  266. letter-spacing: 0px; font-size: 28px; left: 634.5px; top: 117.5px; visibility: visible; opacity: 0; transform: matrix3d(1, 0, 0, 0, 0.99619, 0.08715, 0, 0, 0, 0, 1, -0.00166, -499, 0, 0,
  267.  
  268. 1);">צילום אירועים, אופנה, הריון, בוקים ועוד
  269. </div>
  270. </li>
  271. <!-- SLIDE -->
  272. <li data-transition="fade" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" style="width: 100%; height: 100%; overflow: hidden; visibility:
  273.  
  274. inherit; opacity: 1; z-index: 20;" class="active-revslide current-sr-slide-visible">
  275. <!-- MAIN IMAGE -->
  276. <div class="slotholder" style="width:100%;height:100%;" data-duration="undefined" data-zoomstart="undefined" data-zoomend="undefined" data-
  277.  
  278. rotationstart="undefined" data-rotationend="undefined" data-ease="undefined" data-bgpositionend="undefined" data-bgposition="center center" data-kenburns="undefined"
  279.  
  280. data-easeme="undefined" data-bgfit="cover" data-bgfitend="undefined" data-owidth="undefined" data-oheight="undefined"><div class="tp-bgimg defaultimg" data-
  281.  
  282. lazyload="undefined" data-bgfit="cover" data-bgposition="center center" data-bgrepeat="no-repeat" data-lazydone="undefined" src="http://lulik.tempurl.co.il/Lulik/wp-
  283.  
  284. content/uploads/2014/11/header.jpg" data-src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg" style="width: 100%; height: 100%; opacity: 1; visibility:
  285.  
  286. inherit; background-image: url(http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg); background-color: rgba(0, 0, 0, 0); background-size: cover; background-
  287.  
  288. position: 50% 50%; background-repeat: no-repeat;"></div></div>
  289. <!-- LAYERS -->
  290.  
  291. <!-- LAYER NR. 1 -->
  292. <div class="tp-caption tp-fade start" data-x="center" data-hoffset="0" data-y="-30" data-speed="300" data-start="0" data-easing="Power3.easeInOut"
  293.  
  294. data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 2; left: -150.5px; top: -30px; visibility: visible; opacity: 1; transform: matrix3d(1, 0, 0,
  295.  
  296. 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1);"><img src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/revslider/home1/shadow.png" alt="" data-ww="2200" data-hh="10"
  297.  
  298. style="width: 2200px; height: 10px;">
  299. </div>
  300.  
  301. <!-- LAYER NR. 2 -->
  302. <div class="tp-caption Atlanta1 skewfromleft tp-resizeme start" data-x="329" data-y="center" data-voffset="-54" data-speed="300" data-start="800" data-
  303.  
  304. easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 3; white-
  305.  
  306. space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding: 7px 16px;
  307.  
  308. letter-spacing: 0px; font-size: 28px; left: 778.5px; top: 9.5px; visibility: visible; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1);">התקשרו עכשיו:
  309. </div>
  310.  
  311. <!-- LAYER NR. 3 -->
  312. <div class="tp-caption Atlan skewfromleft tp-resizeme start" data-x="230" data-y="center" data-voffset="6" data-speed="300" data-start="1000" data-
  313.  
  314. easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 4; white-
  315.  
  316. space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding: 7px 16px;
  317.  
  318. letter-spacing: 0px; font-size: 28px; left: 679.5px; top: 69.5px; visibility: visible; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1);">052-523-0290 |
  319.  
  320. 052-719-6045
  321. </div>
  322.  
  323. <!-- LAYER NR. 4 -->
  324. <div class="tp-caption Atlanta1 skewfromleft tp-resizeme start" data-x="305" data-y="center" data-voffset="67" data-speed="300" data-start="1200" data-
  325.  
  326. easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 5; white-
  327.  
  328. space: nowrap; -webkit-transition: all 0s ease 0s; transition: all 0s ease 0s; min-height: 0px; min-width: 0px; line-height: 40px; border-width: 0px; margin: 0px; padding: 7px 16px;
  329.  
  330. letter-spacing: 0px; font-size: 28px; left: 754.5px; top: 130.5px; visibility: visible; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1);">בקרו בעמוד
  331.  
  332. הפייסבוק שלנו
  333. </div>
  334.  
  335. <!-- LAYER NR. 5 -->
  336. <div class="tp-caption sfb start" data-x="248" data-y="130" data-speed="300" data-start="1300" data-easing="Power3.easeInOut" data-elementdelay="0.1"
  337.  
  338. data-endelementdelay="0.1" data-endspeed="300" style="z-index: 6; left: 697.5px; top: 130px; visibility: visible; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -
  339.  
  340. 0.0025, 0, 0, 0, 1);"><a href="https://www.facebook.com/lulikgift" target="_blank"><img src="http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/FaceBook.png" alt=""
  341.  
  342. data-ww="40" data-hh="40" style="width: 40px; height: 40px;"></a>
  343. </div>
  344. </li>
  345. </ul>
  346. <div class="tp-bannertimer tp-bottom" style="visibility: hidden !important; width: 26.7333333333328%; transform: translate3d(0px, 0px, 0px);"></div> <div class="tp-loader
  347.  
  348. spinner2" style="display: none;"><div class="dot1"></div><div class="dot2"></div><div class="bounce1"></div><div class="bounce2"></div><div
  349.  
  350. class="bounce3"></div></div></div>
  351.  
  352. <script type="text/javascript">
  353.  
  354. /******************************************
  355. - PREPARE PLACEHOLDER FOR SLIDER -
  356. ******************************************/
  357.  
  358.  
  359. var setREVStartSize = function() {
  360. var tpopt = new Object();
  361. tpopt.startwidth = 1000;
  362. tpopt.startheight = 181;
  363. tpopt.container = jQuery('#rev_slider_6_1');
  364. tpopt.fullScreen = "off";
  365. tpopt.forceFullWidth="on";
  366.  
  367. tpopt.container.closest(".rev_slider_wrapper").css({height:tpopt.container.height()});tpopt.width=parseInt(tpopt.container.width
  368.  
  369. (),0);tpopt.height=parseInt(tpopt.container.height(),0);tpopt.bw=tpopt.width/tpopt.startwidth;tpopt.bh=tpopt.height/tpopt.startheight;if(tpopt.bh>tpopt.bw)
  370.  
  371. tpopt.bh=tpopt.bw;if(tpopt.bh<tpopt.bw)tpopt.bw=tpopt.bh;if(tpopt.bw<tpopt.bh)tpopt.bh=tpopt.bw;if(tpopt.bh>1){tpopt.bw=1;tpopt.bh=1}if(tpopt.bw>1)
  372.  
  373. {tpopt.bw=1;tpopt.bh=1}tpopt.height=Math.round(tpopt.startheight*(tpopt.width/tpopt.startwidth));if(tpopt.height>tpopt.startheight&&tpopt.autoHeight!="on")
  374.  
  375. tpopt.height=tpopt.startheight;if(tpopt.fullScreen=="on"){tpopt.height=tpopt.bw*tpopt.startheight;var cow=tpopt.container.parent().width();var coh=jQuery(window).height();if
  376.  
  377. (tpopt.fullScreenOffsetContainer!=undefined){try{var offcontainers=tpopt.fullScreenOffsetContainer.split(",");jQuery.each(offcontainers,function(e,t){coh=coh-jQuery
  378.  
  379. (t).outerHeight(true);if(coh<tpopt.minFullScreenHeight)coh=tpopt.minFullScreenHeight})}catch(e){}}tpopt.container.parent().height(coh);tpopt.container.height
  380.  
  381. (coh);tpopt.container.closest(".rev_slider_wrapper").height(coh);tpopt.container.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").height
  382.  
  383. (coh);tpopt.container.css({height:"100%"});tpopt.height=coh;}else{tpopt.container.height(tpopt.height);tpopt.container.closest(".rev_slider_wrapper").height
  384.  
  385. (tpopt.height);tpopt.container.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").height(tpopt.height);}
  386. };
  387.  
  388. /* CALL PLACEHOLDER */
  389. setREVStartSize();
  390.  
  391.  
  392. var tpj=jQuery;
  393. tpj.noConflict();
  394. var revapi6;
  395.  
  396. tpj(document).ready(function() {
  397.  
  398. if(tpj('#rev_slider_6_1').revolution == undefined)
  399. revslider_showDoubleJqueryError('#rev_slider_6_1');
  400. else
  401. revapi6 = tpj('#rev_slider_6_1').show().revolution(
  402. {
  403. dottedOverlay:"none",
  404. delay:9000,
  405. startwidth:1000,
  406. startheight:181,
  407. hideThumbs:200,
  408.  
  409. thumbWidth:100,
  410. thumbHeight:50,
  411. thumbAmount:3,
  412.  
  413.  
  414. simplifyAll:"off",
  415.  
  416. navigationType:"bullet",
  417. navigationArrows:"solo",
  418. navigationStyle:"round",
  419.  
  420. touchenabled:"on",
  421. onHoverStop:"on",
  422. nextSlideOnWindowFocus:"off",
  423.  
  424. swipe_threshold: 0.7,
  425. swipe_min_touches: 1,
  426. drag_block_vertical: false,
  427.  
  428.  
  429.  
  430. keyboardNavigation:"off",
  431.  
  432. navigationHAlign:"center",
  433. navigationVAlign:"bottom",
  434. navigationHOffset:0,
  435. navigationVOffset:20,
  436.  
  437. soloArrowLeftHalign:"left",
  438. soloArrowLeftValign:"center",
  439. soloArrowLeftHOffset:20,
  440. soloArrowLeftVOffset:0,
  441.  
  442. soloArrowRightHalign:"right",
  443. soloArrowRightValign:"center",
  444. soloArrowRightHOffset:20,
  445. soloArrowRightVOffset:0,
  446.  
  447. shadow:0,
  448. fullWidth:"on",
  449. fullScreen:"off",
  450.  
  451. spinner:"spinner2",
  452.  
  453. stopLoop:"off",
  454. stopAfterLoops:-1,
  455. stopAtSlide:-1,
  456.  
  457. shuffle:"off",
  458.  
  459. autoHeight:"off",
  460. forceFullWidth:"on",
  461.  
  462.  
  463. hideTimerBar:"on",
  464. hideThumbsOnMobile:"off",
  465. hideNavDelayOnMobile:1500,
  466. hideBulletsOnMobile:"off",
  467. hideArrowsOnMobile:"off",
  468. hideThumbsUnderResolution:0,
  469.  
  470. hideSliderAtLimit:0,
  471. hideCaptionAtLimit:0,
  472. hideAllCaptionAtLilmit:0,
  473. startWithSlide:0 });
  474.  
  475.  
  476.  
  477.  
  478. }); /*ready*/
  479.  
  480. </script>
  481.  
  482.  
  483. <style type="text/css">
  484. #rev_slider_6_1_wrapper .tp-loader.spinner2{ background-color: #d1d1d1 !important; }
  485. </style>
  486. <div class="tp-bullets simplebullets round hidebullets" style="bottom: 20px; left: 50%; margin-left: -36px;"><div class="bullet first"></div><div class="bullet"></div><div
  487.  
  488. class="bullet last selected"></div><div class="tpclear"></div></div><div style="position: absolute; top: 90px; margin-top: -20px; left: 20px;" class="tp-leftarrow tparrows
  489.  
  490. default round hidearrows"><div class="tp-arr-allwrapper"><div class="tp-arr-iwrapper"><div class="tp-arr-imgholder" style="visibility: inherit; opacity: 1; background-image: url
  491.  
  492. (http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg);"></div><div class="tp-arr-imgholder2"></div><div class="tp-arr-titleholder"></div><div class="tp-
  493.  
  494. arr-subtitleholder"></div></div></div></div><div style="position: absolute; top: 90px; margin-top: -20px; right: 20px;" class="tp-rightarrow tparrows default round
  495.  
  496. hidearrows"><div class="tp-arr-allwrapper"><div class="tp-arr-iwrapper"><div class="tp-arr-imgholder" style="visibility: inherit; opacity: 1; background-image: url
  497.  
  498. (http://lulik.tempurl.co.il/Lulik/wp-content/uploads/2014/11/header.jpg);"></div><div class="tp-arr-imgholder2"></div><div class="tp-arr-titleholder"></div><div class="tp-
  499.  
  500. arr-subtitleholder"></div></div></div></div></div><div class="tp-fullwidth-forcer" style="width: 100%; height: 181px;"></div></div>
  501. <!-- END REVOLUTION SLIDER -->
  502. <div id="primary" role="document">
  503. <div class="<?php echo WRAP_CLASSES; ?>">
  504. <div id="content" class="<?php echo CONTAINER_CLASSES; ?>">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement