-
Notifications
You must be signed in to change notification settings - Fork 3
/
single-leftslider.html
1258 lines (1061 loc) · 46.9 KB
/
single-leftslider.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]-->
<head>
<!--
Theme: ZAP HTML Vs1.0
Author: Designare
Portfolio: http://themeforest.net/user/designare
-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1" name="viewport">
<meta name="keywords" content="YOUR KEYWORDS">
<meta name="description" content="YOUR DESCRIPTION"/>
<title>Zap | Multi-Purpose HTML5 Template</title>
<!-- favicon -->
<link rel="shortcut icon" href="favicon.png">
<link rel="apple-touch-icon" href="#">
<link rel="apple-touch-icon" sizes="72x72" href="#">
<link rel="apple-touch-icon" sizes="114x114" href="#">
<link rel="apple-touch-icon" sizes="144x144" href="#">
<!-- Zap CSS -->
<link rel='stylesheet' href='css/style.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/skeleton.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/camera.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/tango/skin.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/flexslider.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/blog.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/prettyPhoto.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/resize.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/font-awesome.min.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/retina.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/shortcodes.css' type='text/css' media='all' />
<!-- Layer Slider -->
<link rel='stylesheet' href='css/layerslider.css' type='text/css' media='all' />
<!-- Rev Slider -->
<link rel='stylesheet' href='css/settings.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/captions.css' type='text/css' media='all' />
<!-- COLORS VARIATIONS -->
<link rel='stylesheet' href='css/color-variations/greenzap.css' type='text/css' media='all' />
<!--
<link rel='stylesheet' href='css/color-variations/red.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/green.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/orange.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/yellow.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/blue.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/violet.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/brown.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/darkblue.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/color-variations/pink.css' type='text/css' media='all' />
-->
<!-- Fonts -->
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Open+Sans' type='text/css' media='screen' />
<!-- Javascript -->
<script type='text/javascript' src='js/jquery.js'></script>
<script type='text/javascript' src='js/jQuerytools.js'></script>
<script type='text/javascript' src='js/utils.js'></script>
<script type='text/javascript' src='js/zap.js'></script>
<script type='text/javascript' src='js/blog.js'></script>
<script type='text/javascript' src='js/twitter/jquery.tweet.js'></script>
<script type='text/javascript' src='js/camera.min.js'></script>
<script type='text/javascript' src='js/layerslider.kreaturamedia.jquery.js'></script>
<script type='text/javascript' src='js/jquery-easing-1.3.js'></script>
<script type='text/javascript' src='js/jquerytransit.js'></script>
<script type='text/javascript' src='js/layerslider.transitions.js'></script>
<script type='text/javascript' src='js/jquery.themepunch.revolution.min.js'></script>
<script type='text/javascript' src='js/jquery.flexslider-min.js'></script>
<script type='text/javascript' src='js/jflickrfeed.js'></script>
<script type='text/javascript' src='js/jquery.jcarousel.min.js'></script>
<!-- Javascript para por no Zap.js -->
<script type="text/javascript">
</script>
</head>
<!-- BEGIN: BODY -->
<body class="home page">
<!-- HEADER TYPE OPTIONS: "style1", "style2", "style3", "style4" -->
<div id="headerStyleType" class="zap_helper_div">style2</div>
<!-- FOR HIGH RESOLUTION IMAGES USED THIS IMG TAG
<img src="low-res.png" media="only screen and (min-device-pixel-ratio: 2) then (src=high-res.png)"/>
-->
<!-- LOADING PAGES | COMMENT the DIV "loading-pages" IF YOU DON'T WANT TO USE IT -->
<div class="loading-pages"></div>
<!-- BEGIN: TOP PANEL -->
<div id="toppanel">
<div class="toppanel_content">
<div class="container content">
<!-- BEGIN: ONE-THIRD COLUMN -->
<div class="one-third column">
<!-- BEGIN: CONTACT WIDGET -->
<div class="contact-widget-container">
<div class="title"><h4>HI THERE, LET’S GET IN TOUCH!</h4></div>
<div class="contact-form">
<div class="message_success form_success"></div>
<form method="post" action="#" class="validateform">
<ul class="forms">
<li>
<input type="text" name="name" class="yourname txt corner-input" onfocus="if ($(this).val() === 'Name') $(this).val(''); checkerror(this);" onblur="if ($(this).val() === '') $(this).val('Name'); var v = $(this).val(); $('.yourname_val').html(v);" value="Name">
<div class="yourname_val"></div>
<div class="yourname_error zap_helper_div">Please enter a Name</div>
</li>
<li>
<input style="margin: 10px 0;" type="text" name="email" class="youremail txt corner-input" onfocus="if ($(this).val() === 'Email') $(this).val(''); checkerror(this);" onblur="if ($(this).val() === '') $(this).val('Email'); var v = $(this).val(); $('.youremail_val').html(v);" value="Email">
<div class="youremail_val"></div>
<div class="youremail_error zap_helper_div">Please enter a valid Email</div>
</li>
<li>
<textarea name="message" class="yourmessage textarea message corner-input" rows=20 cols=30 onfocus="if ($(this).html() === 'Message') $(this).html(''); checkerror(this);" onblur="if ($(this).html() === '') $(this).html('Message'); var v = $(this).html(); $('.yourmessage_val').html(v);">Message</textarea>
<div class="yourmessage_val"></div>
<div class="yourmessage_error zap_helper_div">Please enter a Message</div>
</li>
<li>
<a id="send-comment" href="javascript:;" onclick="sendemail($(this),'[email protected]', 'Email from Zap', '', '', '', 'Message Successfully Sent', 'There was an error. Please try again later.')" class="submit">Send</a>
</li>
</ul>
</form>
</div>
</div>
<!-- END -->
</div>
<!-- END -->
<!-- BEGIN: ONE-THIRD COLUMN -->
<div class="one-third column">
<!-- BEGIN: FLICKR WIDGET -->
<div class="flickr_container">
<div class="title"><h4>From Flickr</h4></div>
<ul id="flickr" class="thumbs"></ul>
</div>
<!-- FLICKR SCRIPT -->
<script>
jQuery(document).ready(function($){
//flicker gadget
$('#flickr').jflickrfeed({
limit: 4,
qstrings: {
id: ''
},
itemTemplate: '<li>'+
'<a rel="prettyPhoto[gallery1]" href="{{image}}" title="{{title}}">' +
'<img src="{{image_s}}" alt="{{title}}" />' +
'</a>' +
'</li>'
}, function(data) {
$('#flickr a').prettyPhoto({autoplay_slideshow:false, deeplinking: false, show_title: false, social_tools: ''});
});
});
</script>
<!-- BEGIN: TAG CLOUD WIDGET -->
<h4>Tag Cloud</h4><hr/>
<div class="tagcloud">
<a href='#' title=''>Gallery</a>
<a href='#' title=''>Music</a>
<a href='#' title=''>Photos</a>
<a href='#' title=''>SliderImages</a>
<a href='#' title=''>Video</a>
<a href='#' title=''>WpThemes</a>
</div>
<!-- END -->
</div>
<!-- END -->
<!-- BEGIN: ONE-THIRD COLUMN -->
<div class="one-third column">
<h4>Why Zap?</h4><hr/>
<!-- BEGIN: ACCORDION WIDGET -->
<div class="textwidget">
<div id="accordion" class="shortcode-accs default">
<!-- BEGIN: ACC1 -->
<div class="acc-title">
<h2 class="">Powerfull admin panel</h2>
</div>
<div class="pane acc-sec acc-powerfull-admin-panel" style="display:block">
<p>Intuitive options panel, build your custom skin, setup sliders, fonts, newsletter, seo, social media, languages, import/export options, and tons more!</p>
</div>
<!-- BEGIN: ACC2 -->
<div class="acc-title">
<h2 class="">Tons of layout options</h2>
</div>
<div class="pane acc-sec acc-tons-of-layout-options" >
<p>Tons of layout options content goes here. </p>
</div>
<!-- BEGIN: ACC3 -->
<div class="acc-title">
<h2 class="">500 + Google fonts</h2>
</div>
<div class="pane acc-sec acc-500-google-fonts" >
<p>500 + Google fonts content goes here.</p>
</div>
</div>
</div>
<!-- END -->
</div>
<!-- END -->
</div>
</div>
</div>
<!-- BEGIN: TOP PANEL TRIGGER -->
<div class="trigger_toppanel_closer" onclick="$(this).siblings('#toppanel_trigger').click();">
<div class="clicker">
<div class="signal"></div>
</div>
</div>
<div id="toppanel_trigger">
<div class="signal"></div>
</div>
<!-- END -->
<!-- BEGIN: ALL CONTENT -->
<div class="everything">
<!-- BEGIN: HEADER CONTAINER -->
<div class="header_container headerstyle-style2">
<!-- BEGIN: TOP BAR -->
<div class="fullwidth_container style-top-bar">
<div class="container">
<div class="info_above_menu">
<!-- BEGIN: TOP BAR CONTENTS LEFT -->
<div class="eight columns" style="float:left;top: 13px; position:relative;">
<div class="telephone">
<i class="fa fa-phone"></i> 351 344 588
</div>
<div class="email">
<i class="fa fa-envelope"></i>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="address">
<i class="fa fa-map-marker"></i> Street N1, Washington USA
</div>
</div>
<!-- END -->
<!-- BEGIN: TOP BAR CONTENTS RIGHT -->
<div class="eight columns">
<form method="get" id="searchform_top" action="javascript:;">
<input type="text" value="To search type and hit enter" class="field" name="s" id="s_top" placeholder="" onfocus="var t = setTimeout(function(){ $('#s_top').css({'color':'#10b9b9'}); var t2 = setTimeout (function(){ $('#s_top').val('').css('color','#FFF'); }, 300); },1000);" onblur="if ($(this).val()=='') $(this).val('To search type and hit enter'); "/>
</form>
<div class="socialdiv" style="float:right;">
<ul>
<li><a href="#" target="_blank" class="facebook" title="Facebook"></a></li>
<li><a href="#" target="_blank" class="twitter" title="Twitter"></a></li>
<li><a href="#" target="_blank" class="linkedin" title="LinkedIn"></a></li>
<li><a href="#" target="_blank" class="vimeo" title="Vimeo"></a></li>
<li><a href="#" target="_blank" class="skype" title="Skype"></a></li>
<li><a href="#" target="_blank" class="pinterest" title="Pinterest"></a></li>
</ul>
</div>
</div>
<!-- END -->
</div>
</div>
</div>
<!-- END: TOP BAR -->
<!-- BEGIN: HEADER -->
<header id="header" class="container">
<!-- BEGIN: LOGO + SLOGAN-->
<div class="logo_and_menu">
<!-- BEGIN: LOGO -->
<div class="logo columns">
<h1>
<a href="index.html" tabindex="-1">
<!-- LOGO -->
<img class="logo_normal notalone" src="img/logozap.png" alt="" title="">
<!-- LOGO RETINA -->
<img class="logo_retina" src="img/[email protected]" alt="" title="">
</a>
</h1>
<!-- BEGIN: SLOGAN -->
<div class="slogan" style="background: none;font-size: 12px;color: #;margin-top: 33px;">Multi-Purpose HTML5 Template</div>
</div>
<!-- BEGIN: MENU -->
<nav id="menu" class="columns">
<!-- BEGIN: DESKTOP MENU -->
<ul id="menulava" class="sf-menu">
<!-- BEGIN: MENU ITEM HOME -->
<li><a href="#">Home</a>
<ul class="sub-menu">
<li class=""><a href="home-v1-layerslider.html">Home v1 LayerSlider</a></li>
<li class=""><a href="home-v2-designare-slider.html">Home v2 Designare Slider</a></li>
<li class=""><a href="home-v3-revolutionslider.html">Home v3 RevolutionSlider</a></li>
<li class=""><a href="home-v4-revolutionslider.html">Home v4 – Cut Rev Slider</a></li>
<li class=""><a href="home-v5-flexslider.html">Home v5 FlexSlider</a></li>
<li class=""><a href="home-v6-portfolio.html">Home v6 Portfolio</a></li>
</ul>
</li>
<!-- BEGIN: MENU ITEM FEATURES -->
<li><a href="#">Features</a>
<ul class="sub-menu">
<li><a href="features.html">Zap Features</a></li>
<li><a href="http://designarethemes.com/themes/zap-html/boxed">Boxed Layout</a></li>
<li><a href="#">Header Options</a>
<ul class="sub-menu">
<li><a href="header-1.html">Header 1</a></li>
<li><a href="index.html">Header 2</a></li>
<li><a href="header-3.html">Header 3</a></li>
<li><a href="header-4.html">Header 4</a></li>
</ul>
</li>
<li><a href="#">Page Titles</a>
<ul class="sub-menu">
<li><a href="services-v1.html">Banner Type</a></li>
<li><a href="features.html">Image Type</a></li>
<li><a href="about-v1.html">Image Type2</a></li>
<li><a href="bigger-sidebar.html">Colored Style</a></li>
<li><a href="about-v2.html">Dark Style</a></li>
<li><a href="services-v2.html">Light Style</a></li>
<li><a href="contacts-v2.html">Big Text</a></li>
</ul>
</li>
<li><a href="#">Multilevel Menu</a>
<ul class="sub-menu">
<li><a href="#">Create Awesome</a></li>
<li><a href="#">Nice Multilevel</a>
<ul class="sub-menu">
<li><a href="#">Menus</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Trusted Elite Author!</a></li>
<li><a href="#">Free Updates & Support</a></li>
<li><a href="#">Only 17$ Buy it →</a></li>
</ul>
</li>
<!-- BEGIN: MENU ITEM Elements -->
<li><a href="#">Elements</a>
<ul class="sub-menu">
<li><a href="horizontal-tabs.html">Horizontal tabs</a></li>
<li><a href="percentage-graphs.html">Percentage graphs</a></li>
<li><a href="toggle.html">Accordion & Toggle</a></li>
<li><a href="font-awesome.html">Font Awesome</a></li>
<li><a href="special-tabs.html">Special tabs</a></li>
<li><a href="recent-projects.html">Recent projects</a></li>
<li><a href="recent-posts.html">Recent posts</a></li>
<li><a href="buttons.html">Buttons</a></li>
<li><a href="featured-box.html">Info / Featured Box</a></li>
<li><a href="google-maps.html">Google maps</a></li>
<li><a href="services-layout.html">Services layout</a></li>
<li><a href="services-balls.html">Services balls</a></li>
<li><a href="social-buttons.html">Social buttons</a></li>
</ul>
</li>
<!-- BEGIN: MENU ITEM PAGES -->
<li><a href="#">Pages</a>
<ul class="sub-menu">
<li><a href="about-v1.html">About us</a></li>
<li><a href="about-v2.html">About v2</a></li>
<li><a href="about-v3.html">About v3</a></li>
<li><a href="services-v1.html">Services v1</a></li>
<li><a href="services-v2.html">Services v2</a></li>
<li><a href="our-pricing.html">Our Pricing</a></li>
<li><a href="contacts-v2.html">Contacts v2</a></li>
<li><a href="left-sidebar.html">Left Sidebar</a></li>
<li><a href="right-sidebar.html">Right Sidebar</a></li>
<li><a href="left-right-sidebar.html">Left & Right Sidebar</a></li>
<li><a href="bigger-sidebar.html">Biggest Sidebar</a></li>
<li><a href="faq.html">Our FAQ</a></li>
</ul>
</li>
<!-- BEGIN: MENU ITEM PORTFOLIO -->
<li class="current-menu-item"><a href="#">Portfolio</a>
<ul class="sub-menu">
<li><a href="portfolio-v1-2columns.html">Portfolio v1 2Columns</a></li>
<li><a href="portfolio-v1-3columns.html">Portfolio v1 3Columns</a></li>
<li><a href="portfolio-v1-4columns.html">Portfolio v1 4Columns</a></li>
<li><a href="portfolio-v2-2columns.html">Portfolio v2 2Columns</a></li>
<li><a href="portfolio-v2-3columns.html">Portfolio v2 3Columns</a></li>
<li><a href="portfolio-v2-4columns.html">Portfolio v2 4Columns</a></li>
<li><a href="single-leftslider.html">Singles – Left Slider</a></li>
<li><a href="single-fullslider.html">Singles – Full Slider</a></li>
<li><a href="single-fullwidth.html">Singles – FullWidth Slider</a></li>
<li><a href="single-simpleimage.html">Single – Simple Image</a></li>
</ul>
</li>
<!-- BEGIN: MENU ITEM BLOG -->
<li><a href="#">Blog</a>
<ul class="sub-menu">
<li><a href="blog-right-sidebar.html">Blog – Right Sidebar</a></li>
<li><a href="blog-left-sidebar.html">Blog – Left Sidebar</a></li>
<li><a href="blog-fullwidth.html">Blog – Full-Width</a></li>
</ul>
</li>
<!-- BEGIN: MENU ITEM CONTACTS -->
<li><a href="contacts.html">Contacts</a></li>
</ul>
<!-- END: DESKTOP MENU -->
<!-- BEGIN: MOBILE MENU -->
<div id="select-menu">
<select class="dropdown-menu" id="menu-primary-navigation">
<option value="">
Mobile menu
</option>
<option value="">
</option>
<option value="index.html">
Home
</option>
<option value="home-v1-layerslider.html">
Home v1 LayerSlider
</option>
<option value="home-v2-designare-slider.html">
Home v2 Designare Slider
</option>
<option value="home-v3-revolutionslider.html">
Home v3 RevolutionSlider
</option>
<option value="home-v4-revolutionslider.html">
Home v4 - Cut Rev Slider
</option>
<option value="home-v5-flexslider.html">
Home v5 FlexSlider
</option>
<option value="home-v6-portfolio.html">
Home v6 Portfolio
</option>
<option value="">
</option>
<option value="#">
Features
</option>
<option value="features.html">
All Zap Features
</option>
<option value="#">
Header Options
</option>
<option value="header-1.html">
Header 1
</option>
<option value="index.html">
Header 2
</option>
<option value="header-3.html">
Header 3
</option>
<option value="header-4.html">
Header 4
</option>
<option value="#">
Page Titles
</option>
<option value="services-v1.html">
Banner Type
</option>
<option value="features.html">
Image Type
</option>
<option value="percentage-graphs.html">
Colored Style
</option>
<option value="about-v2.html">
Dark Style
</option>
<option value="services-v2.html">
Light Style
</option>
<option value="#">
Multilevel Menu
</option>
<option value="#">
Create Awesome
</option>
<option value="#">
Multilevel menus using
</option>
<option value="#">
WP menus
</option>
<option value="#">
Trusted Elite Author!
</option>
<option value="#">
Free Updates & Support
</option>
<option value="#">
Only 17$ Buy it →
</option>
<option value="">
</option>
<option value="#">
Elements
</option>
<option value="horizontal-tabs.html">
Horizontal tabs
</option>
<option value="percentage-graphs.html">
Percentage graphs
</option>
<option value="toggle.html">
Accordion & Toggle
</option>
<option value="font-awesome.html">
Font Awesome
</option>
<option value="special-tabs.html">
Special tabs
</option>
<option value="recent-projects.html">
Recent projects
</option>
<option value="recent-posts.html">
Recent posts
</option>
<option value="buttons.html">
Buttons
</option>
<option value="featured-box.html">
Info / Featured Box
</option>
<option value="google-maps.html">
Google maps
</option>
<option value="services-layout.html">
Services layout
</option>
<option value="services-balls.html">
Services balls
</option>
<option value="social-buttons.html">
Social buttons
</option>
<option value="">
</option>
<option value="#">
Pages
</option>
<option value="about-v1.html">
About us
</option>
<option value="about-v2.html">
About v2
</option>
<option value="about-v3.html">
About v3
</option>
<option value="services-v1.html">
Services v1
</option>
<option value="services-v2.html">
Services v2
</option>
<option value="our-pricing.html">
Our Pricing
</option>
<option value="contacts-v2.html">
Contacts v2
</option>
<option value="left-sidebar.html">
Left Sidebar
</option>
<option value="right-sidebar.html">
Right Sidebar
</option>
<option value="left-right-sidebar.html">
Left & Right Sidebar
</option>
<option value="bigger-sidebar.html">
Bigger Sidebar
</option>
<option value="faq.html">
Our FAQ
</option>
<option value="">
</option>
<option value="#">
Portfolio
</option>
<option value="portfolio-v1-2columns.html">
Portfolio v1 2Columns
</option>
<option value="portfolio-v1-3columns.html">
Portfolio v1 3Columns
</option>
<option value="portfolio-v1-4columns.html">
Portfolio v1 4Columns
</option>
<option value="portfolio-v2-2columns.html">
Portfolio v2 2Columns
</option>
<option value="portfolio-v2-3columns.html">
Portfolio v2 3Columns
</option>
<option value="portfolio-v2-4columns.html">
Portfolio v2 4Columns
</option>
<option value="single-leftslider.html">
Singles - Left Slider
</option>
<option value="single-fullslider.html">
Singles - Full Slider
</option>
<option value="single-fullwidth.html">
Singles - FullWidth Slider
</option>
<option value="single-simpleimage.html">
Single - Simple Image
</option>
<option value="">
</option>
<option value="#">
Blog
</option>
<option value="blog-right-sidebar.html">
Blog - Right Sidebar
</option>
<option value="blog-left-sidebar.html">
Blog - Left Sidebar
</option>
<option value="blog-fullwidth.html">
Blog - Full-Width
</option>
<option value="">
</option>
<option value="contacts.html">
Contacts
</option>
</select>
</div>
<!-- End Menu -->
</nav>
</div>
</header>
<!-- END: HEADER -->
<div class="header-shadow"></div>
</div>
<!-- END: HEADER CONTAINER -->
<!-- PAGE TITLE -->
<!-- Put your image here on the "style" -->
<div class="fullwidth-container image" style="background: url(img/preview_images/prices-img.jpg);">
<div class="parallax-overlay parallax-overlay-pattern"></div>
<div class="container">
<div class="pageTitle sixteen columns">
<h1 class="page_title">London Office</h1>
<h2 class="secondaryTitle">Using different gradients and meshes to create a 3D look.</h2>
<div class="projects_nav1">
<div class="nav-previous-nav1">
<a href="#" rel="prev"></a>
</div>
<div class="nav-next-nav1">
<a href="#" rel="next"></a>
</div>
</div>
</div>
</div>
</div>
<!-- START: FULL CONTENT -->
<div class="entry-content">
<div class="container">
<div id="primary" class="blogarchive2 single-p">
<div id="content">
<!-- BEGIN: PROJECT CONTENT -->
<div class="proj-content">
<div class="projects_description">
<!-- PROJECT SLIDER + PRETTYPHOTO -->
<div class="projects_media eleven columns leftSlider">
<div id='p-slider-1206' class='flexslider clearfix'>
<ul class='slides da-thumbs-plus'>
<li>
<a href='img/preview_images/682x384.gif'>
<img src='img/preview_images/682x384.gif' alt='' class='rp_style1_img'>
</a>
</li>
<li>
<a href='img/preview_images/682x384.gif' rel='prettyPhoto[pp_gal]'>
<img src='img/preview_images/682x384.gif' alt='' width='100%' class='rp_style1_img'>
</a>
</li>
<li>
<a href='img/preview_images/682x384.gif' rel='prettyPhoto[pp_gal]'>
<img src='img/preview_images/682x384.gif' alt='' width='100%' class='rp_style1_img'>
</a>
</li>
</ul>
<div class="mask" onclick="$(this).siblings('.flex_this_thumb').trigger('click');">
<div class="more" onclick="$(this).parents('.featured-image-thumb').find('.flex_this_thumb').click();"></div>
</div>
</div>
</div>
<!-- PROJECT DESCRIPTION -->
<div class="content_container five columns">
<h2 class="zaptitle"><span>Project Description</span></h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus vitae dolor at odio placerat mollis. Sed et leo eu tellus pretium euismod. Donec lorem velit, tempus in ultrices vitae, porttitor vitae quam. Etiam auctor mauris tellus, et dictum elit faucibus at. Sed vel justo et nulla tempus dictum.</p>
<br/><br/>
<h2 class="zaptitle"><span>Project Details</span></h2>
<p><strong>Client:</strong> Designare</p>
<p><strong>Status:</strong> Finish on 05 Jully, 2013</p>
<p><strong>Copyright:</strong> <a href="javascript:;">Julian Burford</a></p>
<br/>
<br/>
</div>
</div>
</div>
<!-- END: PROJECT CONTENT -->
<script type="text/javascript">
jQuery(document).ready(function ($) {
if ($("#p-slider-1206").find('li').length > 1) {
$("#p-slider-1206").flexslider({
animation: 'fade',
slideDirection: "horizontal",
directionNav: '1',
slideshowSpeed: 5500,
controlsContainer: "#p-slider-1206 .flex-container",
pauseOnAction: false,
pauseOnHover: '1',
keyboardNav: false,
controlNav: '1',
slideshow: '1',
animationDuration: 500,
after: function (slider) {
$(slider).find('.magnifier')
.unbind('click')
.bind('click', function () {
$(slider).find('li:not(".clone")').eq(slider.currentSlide).find('a').trigger('click');
});
window.curSlide = slider.currentSlide;
},
start: function (slider) {
window.curSlide = slider.currentSlide;
$(slider).find('.magnifier').bind('click', function () {
$(slider).find('li:not(".clone")').eq(slider.currentSlide).find('a').trigger('click');
});
if ($('.projects_media .flexslider .mask').length) {
$('.projects_media .flexslider .flex-direction-nav li a').hover(function () {
$('.projects_media .flexslider .mask .more').css('opacity', 0);
}, function () {
$('.projects_media .flexslider .mask .more').css('opacity', 1);
});
}
}
});
$("#p-slider-1206").css('max-height', 'auto');
} else {
$("#p-slider-1206").find('ul li').css('display', 'block');
$("#p-slider-1206").find('li a img').css('opacity', 1);
$("#p-slider-1206").find('.magnifier').bind('click', function () {
$("#p-slider-1206").find('li a').trigger('click');
});
}
$('.slides a.pretty').prettyPhoto({
deeplinking: false,
show_title: false,
social_tools: '',
theme: 'pp_default'
});
if (!$('.nav-previous-nav1').html().length) {
$('.nav-previous-nav1').html('<a href="javascript:;" rel="prev" style="color: rgb(102, 102, 102); opacity: 0.3; filter: alpha(opacity=30);">l</a>');
}
if (!$('.nav-next-nav1').html().length) {
$('.nav-next-nav1').html('<a href="javascript:;" rel="next" style="color: rgb(102, 102, 102); opacity: 0.3; filter: alpha(opacity=30);">r</a>');
}
});
</script>
</div>
</div>
</div>
</div>
<!-- END: FULL CONTENT -->
<div class="white-space"></div>
<div class="white-space"></div>
<!-- BEGIN: BREADCRUMBS -->
<div class="breadcrumbs-container">
<div class="entry-breadcrumb no-flicker" style="border: none;">
<p>You are here: <a href="#">Home</a><span class="delimiter"> » </span>Your page</p>
</div>
</div>
<!-- BEGIN: MAIL CHIMP CONTAINER -->
<div class="mail_chimp_form_container">
<div class="white_content_arrow">seta</div>
<div class="mail-box">
<div class="container mail-news">
<div class="news-l">
<div class="banner">
Subscribe our Newsletter
</div>
<div class="form">
<!-- BEGIN: MailChimp Signup Form
NOTE: PASTE THE CODE FROM YOUR MAIL CHIMP ACCOUNT HERE
-->
<div id="mc_embed_signup">
<form action="#" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span></label>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</form>
</div>
<!-- END: MailChimp Signup Form -->
</div>
</div>
</div>
</div>
</div>
<!-- END: MAIL CHIMP CONTAINER -->
<!-- BEGIN: BACK-TO-TOP BUTTON -->
<div id="back-to-top"><a href="javascript:;"></a></div>
<!-- BEGIN: FOOTER -->
<div id="big_footer">
<div id="tweet_scroll_place">
<div class="container tweet_bird">
<div class="tweet_scroll_text sixteen columns"></div>
</div>
</div>
<script type="text/javascript">
jQuery(function($){
$(".tweet_scroll_text").tweet({
modpath: 'js/twitter/index.php',
username: "DesignareThemes",
page: 1,
avatar_size: 0,
count: 5,
loading_text: "loading ..."
});
});
jQuery(document).ready(function(){
var ul = jQuery(".tweet_scroll_text .tweet_list");
var ticker = function() {
setTimeout(function() {
ul.find('li:first').animate( {marginTop: '-4em'}, 500, function() {
jQuery(this).detach().appendTo(ul).removeAttr('style');
});
ticker();
}, 5000);
};
ticker();
});
</script>
<!-- BEGIN: FOOTER WIDGETS -->