Commit 6daf3e168cf9b47d704f021cd23c0191ce2d23cd

Authored by Eugeny Galkovskiy
1 parent ad7d0ab0

h1-h6 to span

frontend/views/layouts/main.php
... ... @@ -421,7 +421,7 @@ _________________________________________________________ -->
421 421 <div class="container">
422 422 <div class="row">
423 423 <div class="col-md-7">
424   - <h1><?= $seo->h1 ?></h1>
  424 + <span class="main"><?= $seo->h1 ?></span>
425 425 </div>
426 426 <div class="col-md-5">
427 427 <?= Breadcrumbs::widget(
... ... @@ -450,7 +450,7 @@ _________________________________________________________ --&gt;
450 450 <?php
451 451 if (!empty($settings->about)) {
452 452 ?>
453   - <h4><?php echo \Yii::t('app', 'О нас'); ?></h4>
  453 + <span class="title"><?php echo \Yii::t('app', 'О нас'); ?></span>
454 454 <p><?php echo $settings->about; ?></p>
455 455 <?php
456 456 }
... ... @@ -460,7 +460,7 @@ _________________________________________________________ --&gt;
460 460  
461 461 <div class="col-md-4 col-sm-12 col-md-offset-2">
462 462  
463   - <h4><?php echo \Yii::t('app', 'Контакты'); ?></h4>
  463 + <span class="title"><?php echo \Yii::t('app', 'Контакты'); ?></span>
464 464  
465 465 <p>
466 466 <?php
... ...
frontend/views/page/view.php
... ... @@ -47,7 +47,7 @@
47 47 <div class="panel panel-default sidebar-menu">
48 48  
49 49 <div class="panel-heading">
50   - <h3 class="panel-title">Решения</h3>
  50 + <span class="panel-title">Решения</span>
51 51 </div>
52 52  
53 53 <div class="panel-body">
... ...
frontend/web/css/custom.css
... ... @@ -127,4 +127,35 @@
127 127  
128 128 #navigation .navbar-nav ul.dropdown-menu li.active {
129 129 background: #38a7bb;
  130 +}
  131 +
  132 +span.panel-title{
  133 + display: inline-block;
  134 + border-bottom: solid 5px #986dbd;
  135 + line-height: 1.1;
  136 + margin-bottom: 0;
  137 + padding-bottom: 10px;
  138 +}
  139 +
  140 +#footer span.title{
  141 + font-size: 14px;
  142 + font-weight: 800;
  143 + text-transform: uppercase;
  144 + letter-spacing: 0.08em;
  145 + color: #eeeeee;
  146 + margin-top: 10px;
  147 + margin-bottom: 10px;
  148 + display: inline-block;
  149 +}
  150 +
  151 +#heading-breadcrumbs span.main {
  152 + color: #333333;
  153 + text-transform: uppercase;
  154 + font-size: 30px;
  155 + font-weight: 700;
  156 + letter-spacing: 0.08em;
  157 + margin-top: 20px;
  158 + margin-bottom: 20px;
  159 + display:inline-block;
  160 + line-height: 1.1;
130 161 }
131 162 \ No newline at end of file
... ...