1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-29 10:38:08 +01:00

Responsive featurebox indicator correction. News Template titles - added links.

This commit is contained in:
Cameron 2014-01-25 17:26:20 -08:00
parent 1a03a883bd
commit 154f2a897b
2 changed files with 35 additions and 3 deletions

View File

@ -81,7 +81,7 @@ $NEWS_TEMPLATE['default']['item'] = '
$NEWS_TEMPLATE['default']['item'] = '
{SETIMAGE: w=900&h=300}
<h2>{NEWSTITLE}</h2>
<h2>{NEWSTITLELINK}</h2>
<p class="lead">by {NEWSAUTHOR}</p>
<hr>
<div class="row">
@ -112,7 +112,7 @@ $NEWS_TEMPLATE['default']['item'] = '
$NEWS_TEMPLATE['view']['item'] = '
{SETIMAGE: w=900&h=300}
<div class="view-item">
<h2>{NEWSTITLE}</h2>
<h2>{NEWSTITLELINK}</h2>
<p class="lead">by {NEWSAUTHOR}</p>
<hr>
<div class="row">

View File

@ -105,4 +105,36 @@ img.featurebox { border-radius: 5px }
opacity: 1;
}
.btn-featurebox, .btn-cpage { margin-top:10px }
.btn-featurebox, .btn-cpage { margin-top:10px }
/* CUSTOM Responsive Styles */
/* Extra small devices Phones (<768px) .col-xs */
@media all and (max-width: 767px) {
.featurebox .carousel-indicators { top:10px; }
.featurebox-item-image.pull-left, .featurebox-item-image.pull-right { margin-top: 30px; }
}
/* Small devices Tablets .col-sm */
@media all and (min-width: 768px) and (max-width: 991px) {
}
/* Medium devices Desktops (≥992px) .col-md */
@media all and (min-width: 992px) and (max-width: 1199px) {
}
/* Large devices (large desktops, 1200px and up).col-lg */
@media all and (min-width: 1200px) {
}