We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. dusikasss
  2. General Discussion
  3. Friday, 02 August 2013
  4.  Subscribe via email
Я хочу сделать так, чтобы за логотипом был задний фон или фон из картинки. Вот например, как на картинках.
I want to make sure that the logo was for the background or the background of the image. Here, for example, as in the pictures.
Attachments (2)
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
2
Votes
Undo
Здравствуй, dusikasss!

В файле header.php измени это:
<!-- HEADER -->
<header id="t3-header" class="container t3-header">
<div class="row">
...
</div>
</header>
<!-- //HEADER -->


например, на это:
<!-- HEADER -->
<header id="t3-header" class="t3-header">
<div class="container">
<div class="row">
...
</div>
</div>
</header>
<!-- //HEADER -->


Главное, чтобы .container был внутри блока, которому ты хочешь задать фон.
Далее в файлах CSS добавь нужные стили для класса .t3-header или добавь свой класс.


Удачи!

Вио.

-----------------------------------------------------------------

Hi, dusikasss!

In the file header.php change this:
<!-- HEADER -->
<header id="t3-header" class="container t3-header">
<div class="row">
...
</div>
</header>
<!-- //HEADER -->


for example, it is:
<!-- HEADER -->
<header id="t3-header" class="t3-header">
<div class="container">
<div class="row">
...
</div>
</div>
</header>
<!-- //HEADER -->


Next in CSS file add the styles for the .t3-header or add your class.


Good luck!

Vio.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
В каком файле нужно добавить стиль для .t3-header? Я в файле template.css дописываю
.t3-header {
padding-top: 20px;
padding-bottom: 20px;
background-color: #777
}
. но ничего не меняется.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Ты забыл в последней строчке ";" поставить.
.t3-header {
padding-top: 20px;
padding-bottom: 20px;
background-color: #777;
}
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
Поставил, но все равно не работает. Как быть?
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 4
Accepted Answer Pending Moderation
0
Votes
Undo
Лучше всего создай файл custom.css и добавь в него:

.t3-header {
background-color: #777;
}
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 5
Accepted Answer Pending Moderation
0
Votes
Undo
Спасибо Вио, у меня все получилось. :D
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 6
Accepted Answer Pending Moderation
0
Votes
Undo
Рад был помочь :)
Удачи!
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 7
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.