| 12096 |
anikendra |
1 |
<style type="text/css">
|
|
|
2 |
#mydeals {
|
|
|
3 |
float: left;
|
|
|
4 |
height: 41px;
|
|
|
5 |
margin: 0 2px 0 0;
|
|
|
6 |
text-align: right;
|
|
|
7 |
}
|
|
|
8 |
#mydeals .mydeals-btn {
|
| 12164 |
anikendra |
9 |
background-color: #888888;
|
|
|
10 |
border: 1px solid #CCCCCC;
|
| 12096 |
anikendra |
11 |
color: #FFFFFF;
|
|
|
12 |
display: inline-block;
|
| 12164 |
anikendra |
13 |
font: 2.2em/1.2em Helvetica,Arial,sans-serif;
|
|
|
14 |
height: 30px;
|
|
|
15 |
margin: 0;
|
|
|
16 |
padding: 13px 0 5px;
|
| 12096 |
anikendra |
17 |
text-align: center;
|
|
|
18 |
width: 100%;
|
|
|
19 |
}
|
|
|
20 |
.fl{float: left;}
|
| 12164 |
anikendra |
21 |
.w23p{width: 23%;}
|
|
|
22 |
.w75p{width: 75%;margin-left:24%;}
|
| 12096 |
anikendra |
23 |
</style>
|
| 11752 |
lgm |
24 |
<div id="subView" class="offers clearfix" style="display:none;">
|
| 11764 |
lgm |
25 |
<a href="<?php echo base_url().'recharge'?>" class="recharge-btn btn" onclick="changeRecharge('3')">Recharge Your Mobile Now </a>
|
| 11752 |
lgm |
26 |
</div><!--offers-->
|
| 12096 |
anikendra |
27 |
<?php $authorized = $this->session->userdata('authorized');?>
|
|
|
28 |
<?php if(isset($authorized['isPrivateDealUser']) && !empty($authorized['isPrivateDealUser'])) :?>
|
| 12164 |
anikendra |
29 |
<div id="mydeals" class="w23p">
|
| 12097 |
anikendra |
30 |
<a href="<?php echo base_url().'private-deals/1'?>" class="mydeals-btn">Deals</a>
|
| 12096 |
anikendra |
31 |
</div>
|
| 12164 |
anikendra |
32 |
<div class="search-box w75p">
|
|
|
33 |
<div id="search" class="search-hldr clearfix">
|
|
|
34 |
<input type="text" id="autocomplete" onkeyup="autoComplete()" value="<?php if(isset($_GET['q'])) echo urldecode($_GET['q']); ?>" placeholder="Search for more items" onKeyDown="if(event.keyCode==13) searchTrigger();" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false"/><div class="search" onclick="searchTrigger()"></div>
|
|
|
35 |
</div>
|
|
|
36 |
<div id="search-result"></div>
|
|
|
37 |
</div>
|
| 12096 |
anikendra |
38 |
<?php else:?>
|
| 12164 |
anikendra |
39 |
<div class="search-box">
|
|
|
40 |
<div id="search" class="search-hldr clearfix">
|
| 12612 |
anikendra |
41 |
<input type="text" id="autocomplete" onkeyup="autoComplete()" value="<?php if(isset($_GET['q']) && $_GET['q'] != '*') echo urldecode($_GET['q']); ?>" placeholder="Search for more items" onKeyDown="if(event.keyCode==13) searchTrigger();" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false"/><div class="search" onclick="searchTrigger()"></div>
|
| 12164 |
anikendra |
42 |
</div>
|
|
|
43 |
<div id="search-result"></div>
|
|
|
44 |
</div>
|
| 12612 |
anikendra |
45 |
<?php endif;?>
|