1) Với giao diện viewcat_main_right
Để hiện thị hình ảnh nhỏ bên tin bên phải hay trái hoặc dưới chuyên mục ta làm như sau
mở file: themes/default/css/news.css tìm đoạn css:
tìm
<!-- BEGIN: related -->
<div class="col-md-8">
<ul class="related">
<!-- BEGIN: loop -->
<li class="clearfix">
<a class="show h4" href="{OTHER.link}" title="{OTHER.title}" <!-- BEGIN: tooltip -->data-content="{OTHER.hometext}" data-img="{OTHER.imghome}" data-rel="tooltip" data-placement="{TOOLTIP_POSITION}"<!-- END: tooltip -->><img src="{OTHER.imghome}" alt="{OTHER.title}" width="50" class="img-thumbnail pull-left " />{OTHER.title_0}</a>
</li>
<!-- END: loop -->
</ul>
</div>
<!-- END: related -->code-box
Tiếp theo mở file modules/news/theme.php tìm function viewsubcat_main($viewcat, $array_cat)
kéo xuống dưới tìm dòng $xtpl->assign('OTHER', $array_row_i);
trước nso ta thêm đoạn
-----------
Mún hình tin chính full khi vào mobi thì ta làm như sau
mở file: themes/default/css/style.responsive.css tìm đoạn css: @media (max-width:499px) {
thêm vào
class="img-thumbnail pull-left imghome"
thêm vào img_full vào sẽ đc
@media (max-width:499px) {code-box
thêm vào
class="img-thumbnail pull-left imghome"
thêm vào img_full vào sẽ đc
2) Với dạng 2 cột (viewcat_two_column.tpl)
Thì các tin nhỏ bên dưới là đoạn sau:
trong thẻ
<!-- BEGIN: loopcat -->
<ul class="related">
<!-- BEGIN: other -->
<li class="clearfix">
<a class="show h4" href="{CONTENT.link}" <!-- BEGIN: tooltip -->data-content="{CONTENT.hometext}" data-img="{CONTENT.imghome}" data-rel="tooltip" data-placement="{TOOLTIP_POSITION}"<!-- END: tooltip --> title="{CONTENT.title}"><img src="{CONTENT.imghome}" alt="{CONTENT.title}" width="50" class="img-thumbnail pull-left " />{CONTENT.title}</a>
</li>
<!-- END: other -->
</ul>code-box
mở file: themes/default/css/news.css tìm đoạn css:
div.news_column ul.related li {
padding:0 4px 0 0;
}code-box
thêm float: left; ta đượcdiv.news_column ul.related li {
float: left;
padding:0 4px 0 0;
}code-box
- Tiếp theo ta mở file mở file: themes/default/modules/news/viewcat_main_right.tpltìm
<!-- BEGIN: related -->
Nội dung bên trong
<!-- END: related -->code-box
thay thế bằng đoạn này<div class="col-md-8">
<ul class="related">
<!-- BEGIN: loop -->
<li class="clearfix">
<a class="show h4" href="{OTHER.link}" title="{OTHER.title}" <!-- BEGIN: tooltip -->data-content="{OTHER.hometext}" data-img="{OTHER.imghome}" data-rel="tooltip" data-placement="{TOOLTIP_POSITION}"<!-- END: tooltip -->><img src="{OTHER.imghome}" alt="{OTHER.title}" width="50" class="img-thumbnail pull-left " />{OTHER.title_0}</a>
</li>
<!-- END: loop -->
</ul>
</div>
<!-- END: related -->code-box
Tiếp theo mở file modules/news/theme.php tìm function viewsubcat_main($viewcat, $array_cat)
kéo xuống dưới tìm dòng $xtpl->assign('OTHER', $array_row_i);
trước nso ta thêm đoạn
$array_row_i['title_0'] = nv_clean60($array_row_i['title'], 50);
xong hoàn tất-----------
Mún hình tin chính full khi vào mobi thì ta làm như sau
mở file: themes/default/css/style.responsive.css tìm đoạn css: @media (max-width:499px) {
thêm vào
.img_full{width: 100%; margin: auto}
sau đó mở file: themes/default/modules/news/viewcat_main_right.tplclass="img-thumbnail pull-left imghome"
thêm vào img_full vào sẽ đc
class="img_full img-thumbnail pull-left imghome"
mở file: themes/default/css/style.responsive.css tìm đoạn css:
Nhân tiện bác cho em hỏi khi hiển thị trên mobile. Em muốn hình ảnh của tin đầu tiên hiển thị kích thước 100% của thiết bị thì làm như thế nào ạ.Em thử thêm width:100% vào .img-thumbnail nhưng như thế thì khi hiển thị trên PC hình ảnh sẽ hiển thị 100% kích thước của hình anh ạ :(
thêm vào
.img_full{width: 100%; margin: auto}code-box
sau đó mở file: themes/default/modules/news/viewcat_main_right.tplclass="img-thumbnail pull-left imghome"
thêm vào img_full vào sẽ đc
class="img_full img-thumbnail pull-left imghome"code-box
đơn giản chỉ có thế thôi2) Với dạng 2 cột (viewcat_two_column.tpl)
Thì các tin nhỏ bên dưới là đoạn sau:
<ul class="related">
<!-- BEGIN: other -->
<li class="clearfix">
<a class="show h4" href="{CONTENT.link}" <!-- BEGIN: tooltip -->data-content="{CONTENT.hometext}" data-img="{CONTENT.imghome}" data-rel="tooltip" data-placement="{TOOLTIP_POSITION}"<!-- END: tooltip --> title="{CONTENT.title}"><img src="{CONTENT.imghome}" alt="{CONTENT.title}" width="50" class="img-thumbnail pull-left " />{CONTENT.title}</a>
</li>
<!-- END: other -->
</ul>code-box
Nguồn: nuke.vn
Tags:
Nukeviet