Commit 44018270c094c768ced068b377e50151090c971b
1 parent
82986136
111
Showing
2 changed files
with
6 additions
and
3 deletions
Show diff stats
frontend/views/event/_objects.php
... | ... | @@ -19,7 +19,7 @@ FlipclockAsset::register($this); |
19 | 19 | |
20 | 20 | |
21 | 21 | <?php if(!empty($model->end_at) && strtotime($model->end_at) > strtotime(date("Y-m-d"))){?> |
22 | - <div class="clock_style_abs clock_<?= $model->primaryKey ?>"></div> | |
22 | + <div class="clock_style_abs top70 clock_<?= $model->primaryKey ?>"></div> | |
23 | 23 | |
24 | 24 | <?php $js = "var clock; |
25 | 25 | clock = new FlipClock(jQuery('.clock_". $model->primaryKey ."'),{ | ... | ... |
frontend/web/css/css_header.css
... | ... | @@ -13286,14 +13286,17 @@ h1.title { |
13286 | 13286 | .clock_centered, .arrows_centered_parent{ |
13287 | 13287 | width: 100%; |
13288 | 13288 | position: absolute; |
13289 | - height: 100%; | |
13290 | 13289 | top: 0; |
13291 | 13290 | } |
13292 | 13291 | .clock_style_abs { |
13293 | 13292 | position: absolute; |
13294 | - top: 50px; | |
13293 | + top: 35px; | |
13295 | 13294 | left: 10px; |
13296 | 13295 | } |
13296 | +#prev_slide, #next_slide{ | |
13297 | + top: 200px!important; | |
13298 | +} | |
13299 | +.clock_style_abs.top70{top:70px;} | |
13297 | 13300 | .arrows_slide_centered{ |
13298 | 13301 | position:relative; |
13299 | 13302 | max-width:1497px; | ... | ... |