Всем добрый вечер.
Имеется сайт на нем релизы у релизов есть главы у глав есть кнопки типа скачать, дата загрузки главы, и кто выложил никнейм.
Не могу убрать пле никнейма из мобильной версии и она налазит на название главы те соседний блок.
Вот код:
<?php if (isset($mangaOptions->show_contributer_pseudo) && $mangaOptions->show_contributer_pseudo == '1') { ?>
<div @if(config('settings.orientation') === 'rtl') style="float: left; margin-left: 10%;" @else style="float:right; margin-right: 10%;"@endif>
<?php if (is_module_enabled('MySpace')): ?>
<a href="{{route('user.show', $chapter->user->username)}}">
<i class="fa fa-user"></i> {{ $chapter->user->username }}
</a>
<?php else : ?>
<i class="fa fa-user"></i> {{ $chapter->user->username }}
<?php endif; ?>
</div>
<?php } ?>
</div>
в него пытаюсь вставить
@media screen and (max-width: 600px) {
##mobile_not {
visibility: hidden;
}
получается вот так:
<?php if (isset($mangaOptions->show_contributer_pseudo) && $mangaOptions->show_contributer_pseudo == '1') { ?>
<div @if(config('settings.orientation') === 'rtl') style="float: left; margin-left: 10%;" @else style="float:right; margin-right: 10%; media screen and (max-width: 600px) {
#mobile_not {
display: none;
}
}" @endif>
<?php if (is_module_enabled('MySpace')): ?>
<a href="{{route('user.show', $chapter->user->username)}}">
<i class="fa fa-user"></i> {{ $chapter->user->username }}
</a>
<?php else : ?>
<i class="fa fa-user"></i> {{ $chapter->user->username }}
<?php endif; ?>
</div>
<?php } ?>
и никнейм все равно не убирается из мобильной версии, подскажите что я делаю не так?