PDA

View Full Version : CompletevB - Aesthetica Theme Blue [4.1.2]



Tiểu Bá Vương 1404
19-03-2011, 01:28 PM
Lại thêm một style vBulletin 4.1.2 đến từ CompletevB.

Thông tin : Gói style bao gồm :
- Hai loại giao diện : fluid và fixed.
- File psd cho logo trên header.
- File xml tạo css cho vBB : product-matt-add-css.xml (ai cài rồi thì k cần cài lại).

Cài đặt :
- Upload thư mục images bằng FTP đè lên thư mục images trong host.
- Import file xml của style.

Demo :
http://www.completevb.com/demovb4/forum.php?styleid=19

http://www.mediafire.com/?60262kn2luj2r76

s0ct0j0c
19-03-2011, 03:54 PM
Đúng là BV share toàn style hợp ý mình :MatCuoi (23):

kahlakhooc
19-03-2011, 05:22 PM
Cho mình ? hàng cậu rip hay leech vậy :)

Tiểu Bá Vương 1404
19-03-2011, 07:31 PM
Cho mình ? hàng cậu rip hay leech vậy :)
Rip thì lấy đâu ra psd :MatCuoi (4):

kahlakhooc
20-03-2011, 12:41 PM
Skin này làm mất biểu tượng nút thanks.
Boder shoutbox ko bo tròn như topx hay forum home
Giúp mình fix với. Xin chân thành cảm ơn.
Demo: http://pt3-school.com/forum.php?styleid=5

Tiểu Bá Vương 1404
20-03-2011, 01:08 PM
Skin này làm mất biểu tượng nút thanks.
Boder shoutbox ko bo tròn như topx hay forum home
Giúp mình fix với. Xin chân thành cảm ơn.
Demo: http://pt3-school.com/forum.php?styleid=5
Bác gửi cho em cái code main chatbox của bác, em fix lại cho nó dùng với foruminfo hoặc what's going on cho kool.

kahlakhooc
20-03-2011, 01:35 PM
Đây.


<div class="forumbit_nopost L1" id="changfcb">
<div class="forumhead foruminfo L1 collapse">
<h2>
<span class="forumtitle">{vb:phrase fcb_title}</span>
</h2>
</div>

<ol id="fcbbox">
<li class="forumbit_post L2">
<div class="forumrow" style="width:100%;">

<table width="100%">
<vb:if condition="!$vboptions[fcb_editor_bottom]">{vb:raw fcb_editor}</vb:if>
<tr><td style="padding: 6px; border-top: 1px solid #f4f4f4; border-bottom: 1px solid #f4f4f4;">

<iframe name="fcb_frame" src="{vb:raw vboptions.fcb_path}/index.php" frameborder="0" style="width: 100%; height: {vb:raw vboptions.fcb_boxheight};"></iframe>

</td>
</tr>

<vb:if condition="$vboptions[fcb_editor_bottom]">{vb:raw fcb_editor}</vb:if>

</table>
</div>
</li>
</ol>
</div>

<script language="JavaScript" type="text/javascript">
var textstyle = document.getElementById('hmess');

<vb:if condition="$vboptions[fcb_turnbold]">
if (fcb_getCookie('fcb_b_userid{vb:raw bbuserinfo.userid}').length > 0)
{
document.fcb_form.hbold.value = fcb_getCookie('fcb_b_userid{vb:raw bbuserinfo.userid}');
}
</vb:if>

<vb:if condition="$vboptions[fcb_turnitalic]">
if (fcb_getCookie('fcb_i_userid{vb:raw bbuserinfo.userid}').length > 0)
{
document.fcb_form.hitalic.value = fcb_getCookie('fcb_i_userid{vb:raw bbuserinfo.userid}');
}
</vb:if>

<vb:if condition="$vboptions[fcb_turnunderline]">
if (fcb_getCookie('fcb_u_userid{vb:raw bbuserinfo.userid}').length > 0)
{
document.fcb_form.hunderline.value = fcb_getCookie('fcb_u_userid{vb:raw bbuserinfo.userid}');
}
</vb:if>

<vb:if condition="$vboptions[fcb_turnfont]">
if (fcb_getCookie('fcb_font_userid{vb:raw bbuserinfo.userid}').length > 0)
{
document.fcb_form.hfont.value = fcb_getCookie('fcb_font_userid{vb:raw bbuserinfo.userid}');
}
</vb:if>

<vb:if condition="$vboptions[fcb_turncolor]">
if (fcb_getCookie('fcb_color_userid{vb:raw bbuserinfo.userid}').length > 0)
{
document.fcb_form.hcolor.value = fcb_getCookie('fcb_color_userid{vb:raw bbuserinfo.userid}');
}
</vb:if>
fcb_upstyle_cookie();

function fcb_upstyle_cookie()
{
if (document.fcb_form.hbold.value == 'B*')
{
textstyle.style.fontWeight = 'bold';
}
else
{
textstyle.style.fontWeight = 'normal';
}

if (document.fcb_form.hitalic.value == 'I*')
{
textstyle.style.fontStyle = 'italic';
}
else
{
textstyle.style.fontStyle = 'normal';
}


if (document.fcb_form.hunderline.value == 'U*')
{
textstyle.style.textDecoration = 'underline';
}
else
{
textstyle.style.textDecoration = 'none';
}

textstyle.style.fontFamily = document.fcb_form.hfont.value;
textstyle.style.color = document.fcb_form.hcolor.value;
}


function fcb_upstyle(element)
{
if (element == 'b')
{
if (document.fcb_form.hbold.value == 'B')
{
document.fcb_form.hbold.value = 'B*';
textstyle.style.fontWeight = 'bold';
}
else
{
document.fcb_form.hbold.value = 'B';
textstyle.style.fontWeight = 'normal';
}

}
else if (element == 'i')
{
if (document.fcb_form.hitalic.value == 'I')
{
document.fcb_form.hitalic.value = 'I*';
textstyle.style.fontStyle = 'italic';
}
else
{
document.fcb_form.hitalic.value = 'I';
textstyle.style.fontStyle = 'normal';
}

}
else if (element == 'u')
{
if (document.fcb_form.hunderline.value == 'U')
{
document.fcb_form.hunderline.value = 'U*';
textstyle.style.textDecoration = 'underline';
}
else
{
document.fcb_form.hunderline.value = 'U';
textstyle.style.textDecoration = 'none';
}

}
else if (element == 'font')
{
textstyle.style.fontFamily = document.fcb_form.hfont.value;
}
else if (element == 'color')
{
textstyle.style.color = document.fcb_form.hcolor.value;
}

fcb_setCookie('fcb_b_userid{vb:raw bbuserinfo.userid}', document.fcb_form.hbold.value);
fcb_setCookie('fcb_i_userid{vb:raw bbuserinfo.userid}', document.fcb_form.hitalic.value);
fcb_setCookie('fcb_u_userid{vb:raw bbuserinfo.userid}', document.fcb_form.hunderline.value);
fcb_setCookie('fcb_font_userid{vb:raw bbuserinfo.userid}', document.fcb_form.hfont.value);
fcb_setCookie('fcb_color_userid{vb:raw bbuserinfo.userid}', document.fcb_form.hcolor.value);
}

function fcb_setCookie(c_name,value)
{
exdate = new Date();
exdate.setDate(exdate.getDate()+365);
document.cookie=c_name+ "=" +escape(value)+ ";expires="+exdate.toGMTString() + "path={vb:raw vboptions.cookiepath}";
}
function fcb_getCookie(c_name)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=");
if (c_start!=-1)
{
c_start=c_start + c_name.length+1;
c_end=document.cookie.indexOf(";",c_start);
if (c_end==-1) c_end=document.cookie.length;
return unescape(document.cookie.substring(c_start,c_end)) ;
}
else { return ""; }
}
}

var chatboxkey = '{vb:raw fcb_chatboxkey}';
var huid = '{vb:raw bbuserinfo.userid}';
var hgroupid = '{vb:raw bbuserinfo.usergroupid}';
var huser = "{vb:raw fcb_musername}";

function fcb_postshout()
{
hmess = document.fcb_form.hmess.value;
hcolor = document.fcb_form.hcolor.value;
hfont = document.fcb_form.hfont.value;
hbold = document.fcb_form.hbold.value;
hitalic = document.fcb_form.hitalic.value;
hunderline = document.fcb_form.hunderline.value;
document.fcb_form.hmess.value = '';
if (hmess == '')
{
alert('{vb:phrase fcb_typemess}');
}
else
{
fcb_frame.location = '{vb:raw vboptions.fcb_path}/index.php?do=postshout&key=' + chatboxkey + '&userid=' + huid + '&groupid=' + hgroupid + '&username=' + huser + '&message=' + encodeURIComponent(hmess) + '&color=' + hcolor + '&font=' + hfont + '&bold=' + hbold + '&italic=' + hitalic + '&underline=' + hunderline;
}
}

function archivepage()
{
window.open("{vb:raw vboptions.fcb_path}/archive.php", "fcbarchive", "location=no,scrollbars=yes,width=640,height=480");
}
function addsmilie(code)
{
document.fcb_form.hmess.value = document.fcb_form.hmess.value + code;
}
function smiliepopup()
{
window.open("ajax.php?do=fcb_allsmilies", "fcballsmilies", "location=no,scrollbars=yes,width=500,height=500");
}

function fcb_showsmilies_action()
{
if (fcb.handler.readyState == 4 && fcb.handler.status == 200)
{
document.getElementById('fcb_smiliebox').innerHTML = fcb.handler.responseText;
}
}
function fcb_showsmilies()
{
document.getElementById('fcb_smiliebox').innerHTML = '{vb:phrase fcb_wait}';
fcb = new vB_AJAX_Handler(true);
fcb.onreadystatechange(fcb_showsmilies_action);
fcb.send('ajax.php?do=fcb_randomsmilies');
}
function fcb_showsmiliebox()
{
if (document.getElementById('fcb_smilieboxmain').styl e.display == 'none')
{
document.getElementById('fcb_smilieboxmain').style .display = 'inline';
fcb_showsmilies();
}
else
{
document.getElementById('fcb_smilieboxmain').style .display = 'none';
}
}
function fcb_hideshowsmiliebox()
{
document.getElementById('fcb_smilieboxmain').style .display = 'none';
}
function fcb_refresh()
{
fcb_frame.location = '{vb:raw vboptions.fcb_path}/index.php';
}

function fcb_click_buzz()
{
fcb_frame.location = '{vb:raw vboptions.fcb_path}/index.php?do=postshout&key=' + chatboxkey + '&userid=' + huid + '&groupid=' + hgroupid + '&username=' + huser + '&message=BUZZ!!!&color=red&font=&bold=B*&italic=I&underline=U';
}
</script>


Phiền bạn fix dùm giống foruminfo.

Tiểu Bá Vương 1404
20-03-2011, 08:00 PM
Em thấy nó bình thường rồi thì phải, còn cái nút thanks, anh cho em cái hình demo xem nào.

kahlakhooc
21-03-2011, 05:41 PM
http://pt3-school.com/showthread.php?2-Tuyen-Smod-Mod-Cho-dien-dan.pt3
Bạn dùng user này test thử dùm mình. Mất biểu tượng nút thanks.
Acc/Pass: Tester/123456

Tiểu Bá Vương 1404
21-03-2011, 05:53 PM
Anh up hai cái hình "post-thanks.png" và "post-thanks-hover.png" từ thư mục images/buttons sang thư mục images/styles/Aesthetica/buttons.

Lỗi : do trong thư mục buttons của style chưa có hình, và lưu ý rằng, nhưng style như thế này đều có thư mục images riêng giống với mặc định, nên trong stylevar, thuộc tính imgdir_buttons là dạng images/styles/Aesthetica/buttons.

kahlakhooc
21-03-2011, 06:28 PM
Anh up hai cái hình "post-thanks.png" và "post-thanks-hover.png" từ thư mục images/buttons sang thư mục images/styles/Aesthetica/buttons.

Lỗi : do trong thư mục buttons của style chưa có hình, và lưu ý rằng, nhưng style như thế này đều có thư mục images riêng giống với mặc định, nên trong stylevar, thuộc tính imgdir_buttons là dạng images/styles/Aesthetica/buttons.

Cảm ơn bạn nhé. Để up lại xem sao.
P/s: Skin này khá vừa ý. Nếu mà tcat foruminfo giống tcat của topx và shoutbox nữa thì đẹp hơn.

Tiểu Bá Vương 1404
21-03-2011, 06:31 PM
...P/s: Skin này khá vừa ý. Nếu mà tcat foruminfo giống tcat của topx và shoutbox nữa thì đẹp hơn.
Vậy thì để nó giống với What's Going On ?

s0ct0j0c
21-03-2011, 06:34 PM
Tiện thể đổi style cho block và widget ở đâu thế em :MatCuoi (12):

cowboy
22-03-2011, 03:19 AM
cái tem này có cái màu đỏ ko bạn.
à, mình hỏi cài này chút.
khi mà chuyển qua lại giữa các tab như Home, Forum, Blog, what's news thì máy tab này nó có cái biến mất, có cái ko
có cách nào mình làm cho máy tab này nó cố địng khi mình chuyển qua lại các tab cms, forum ko

- cái file psd mình về lưu lại dạng png, up lên nhưng mà hình như nó không điệp màu với màu nền thì phải, có ai test thử chưa

Tiểu Bá Vương 1404
22-03-2011, 11:38 AM
cái tem này có cái màu đỏ ko bạn.
à, mình hỏi cài này chút.
khi mà chuyển qua lại giữa các tab như Home, Forum, Blog, what's news thì máy tab này nó có cái biến mất, có cái ko
có cách nào mình làm cho máy tab này nó cố địng khi mình chuyển qua lại các tab cms, forum ko

- cái file psd mình về lưu lại dạng png, up lên nhưng mà hình như nó không điệp màu với màu nền thì phải, có ai test thử chưa
Xin lỗi, không có màu đỏ bạn ah.

Còn về vụ tab, cái bạn nói sao mà lạ lùng quá, bạn cho mình xem link diễn đàn thử.

File psd, dùng photoshop sửa lại rồi lưu lại thành dạng .gif, up lên.

cowboy
22-03-2011, 03:13 PM
Còn về vụ tab, cái bạn nói sao mà lạ lùng quá, bạn cho mình xem link diễn đàn thử.

mình làm trên local, chưa có host up lên. khi mà mình đăng nhập thì xem bình thương, nhưng khi là guest thi khi vào trang CMS
http://127.0.0.1/tan/content.php thì không thấy tab forum
Khi vào tab blog
http://127.0.0.1/tan/blog.php thì không thấy tab Home của CMS

File psd, dùng photoshop sửa lại rồi lưu lại thành dạng .gif, up lên. mình làm được rồi @@

daikamam
24-03-2011, 12:16 AM
Skin đẹp !
Demo: http://cujutonline.net/diendan//forum.php


- File xml tạo css cho vBB : product-matt-add-css.xml (ai cài rồi thì k cần cài lại).

cái này để làm gì. chức năng ? :D

Tiểu Bá Vương 1404
24-03-2011, 12:26 AM
...cái này để làm gì. chức năng ? :D
Add link css cho style vào headinclude, hỗ trợ hơn cho việc load style, theo em thấy là như vậy.

kahlakhooc
26-03-2011, 02:16 AM
Phiền bạn giúp mình chuyển nốt cái tcat của foruminfo giống tcat của topx hay shoutbox.
http://i410.photobucket.com/albums/pp185/kahlakhooc/2.jpg

---> Thành
http://i410.photobucket.com/albums/pp185/kahlakhooc/2-1.jpg
Mong bạn hướng dẫn cách edit.
File xml mình xuất ra:
http://www.mediafire.com/?8sggjmg3te2ag3h
Thanks!

Tiểu Bá Vương 1404
26-03-2011, 11:53 AM
Anh sửa thế này thì làm gì còn là style nữa ?

Đến tối em mới có thời gian để sửa !

kahlakhooc
26-03-2011, 05:32 PM
Anh sửa thế này thì làm gì còn là style nữa ?

Đến tối em mới có thời gian để sửa !

Thì ko biết edit đành nhờ cậu chỉ :)
Waiting...

kinggai
07-04-2011, 06:24 PM
E cũng bị mất nút thank, ko bít khắc phục thế nào

Tiểu Bá Vương 1404
07-04-2011, 07:10 PM
E cũng bị mất nút thank, ko bít khắc phục thế nào
Đọc lại bài này đi : http://itvnn.net/showthread.php?24496&p=46286&viewfull=1#post46286

kinggai
07-04-2011, 08:54 PM
mình up chuẩn luôn:
cũng ko thấy nút thank đâu.

Tiểu Bá Vương 1404
07-04-2011, 09:16 PM
Anh gửi cho em cái mod anh dùng đi, khổ thật !

kinggai
07-04-2011, 09:23 PM
mình dùng cái này

- Nhân tiện cho hỏi: mình dùng cái topx, chatbox 3.16 mà cũng ko hiển thị

Tiểu Bá Vương 1404
07-04-2011, 09:30 PM
...Nhân tiện cho hỏi: mình dùng cái topx, chatbox 3.16 mà cũng ko hiển thị
Anh cài đặt như thế nào ? Tên MOD cụ thể xem !

P.S : Cái mod thank, anh chụp cho em cái hình trong bài viết xem !

kinggai
07-04-2011, 09:45 PM
mình làm theo hướng dẫn ở quyển vbulletin 4.x từ A-Z
- ở phần thông tin cá nhân bên trái cũng ko có thống kê: thank và thanked

kahlakhooc
08-04-2011, 05:20 PM
TRong pic này có thấy mod thank đâu :-s
Import lại đi :)
http://itvnn.net/attachment.php?attachmentid=2712&d=1302187522

kinggai
08-04-2011, 06:42 PM
post thanks e có import bác ạ, ở phần trên của ảnh
Đây là 4rum bọn e: http://thanhnienthueyba.com/forum.php
-- Nó còn ko hiện ra cái topx và chatbox nữa
Bác nào giúp e với

Tiểu Bá Vương 1404
08-04-2011, 06:50 PM
post thanks e có import bác ạ, ở phần trên của ảnh
Đây là 4rum bọn e: http://thanhnienthueyba.com/forum.php
-- Nó còn ko hiện ra cái topx và chatbox nữa
Bác nào giúp e với
Thứ quái gì đây vậy trời. Anh đưa nick nào test được để em xem.

kinggai
08-04-2011, 07:07 PM
user: test
pass: 123456

kahlakhooc
10-04-2011, 11:51 AM
Hàng ngon Itvnn cũng dùng ;))
@TBV: Không giúp a chuyển à :(

Tiểu Bá Vương 1404
10-04-2011, 12:59 PM
...@TBV: Không giúp a chuyển...
Cái này đơn giản mà, anh chỉ cần revert lại temp forumhome_forumbit_level1_nopost hoặc anh thay bằng temp sau :


<li class="forumbit_nopost L1" id="cat{vb:raw forum.forumid}">
<div class="forumhead foruminfo L1 collapse">
<h2>
<span class="forumtitle"><a href="{vb:link forum, {vb:raw forum}}">{vb:raw forum.title}</a></span>
<vb:if condition="$show['forumdescription'] OR $show['subforums']">
<vb:if condition="$show['forumdescription']"><span class="tcatDesc">- {vb:raw forum.description}</span></vb:if>

<vb:if condition="$show['subforums']">
<h4 class="subforumlistlabel">{vb:rawphrase subforums}:</h4>
<ol class="subforumlist commalist">
{vb:raw forum.subforums}
</ol>
</vb:if>
</vb:if>
</h2>
<vb:if condition="!$show['collapsable_forums']">
<a class="collapse" id="collapse_c_cat{vb:raw forum.forumid}" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse_tcat.png" alt="" title="{vb:rawphrase collapse_this_category}" /></a>
</vb:if>
<!-- Start Forum thead Heading ForumThemes -->
<div class="forumbitBody">
<div class="thead_bar">
<div class="theadrow table">
<div class="foruminfo td">
<div class="forumdata">
<div class="datacontainer">
{vb:rawphrase title}
</div>
</div>
</div>
<div class="forumactionlinks td">
&nbsp;
</div>
<div class="forumstats td" align="center">
&nbsp;
</div>
<div class="forumlastpost td">
{vb:rawphrase last_post}
</div>

</div>
</div>
<!-- endForum thead Heading ForumThemes -->

<vb:if condition="$childforumbits">
<ol id="c_cat{vb:raw forum.forumid}" class="childforum">
{vb:raw childforumbits}
</ol>
</vb:if>
</div>
<div class="bottomBar"><div class="bottomBarLeft"><div class="bottomBarRight">&nbsp;</div></div></div>
</li>

sauxxx
10-04-2011, 03:36 PM
thay cái logo bằng cách nào vậy mấy bạn mình mới tập làm nên không biết :(

s0ct0j0c
10-04-2011, 03:45 PM
Stylevars > kiếm "titleimage" rùi đổi

coldboy
01-08-2011, 05:41 PM
Sao mình thay vào nó lại lỗi thế này vậy?

http://cc1.upanh.com/25.881.33055440.H8A0/1.jpg

PhucSD
01-08-2011, 05:48 PM
Sao mình thay vào nó lại lỗi thế này vậy?

http://cc1.upanh.com/25.881.33055440.H8A0/1.jpg

Vô lí hết sức, thay title image trên header mà lại bị lỗi ở thanh tcat, bạn thử kiểm tra xem link ảnh bạn dẫn có hợp lệ không, xem thư logo bạn chèn có hiển thị không thì biết ngay

coldboy
01-08-2011, 06:02 PM
Vô lí hết sức, thay title image trên header mà lại bị lỗi ở thanh tcat, bạn thử kiểm tra xem link ảnh bạn dẫn có hợp lệ không, xem thư logo bạn chèn có hiển thị không thì biết ngay
Site của em đây :((
http://hwarez.net/forums/forum.php
E (http://hwarez.net/forums/admincp/index.php)m gà về cái này lắm, nếu có thể anh PM qua dahu em được không: cold_boy_nmh

PhucSD
01-08-2011, 06:05 PM
Mình chỉ trợ giúp trên ITVNN, bạn có thay đổi gì trong skin không

coldboy
01-08-2011, 06:07 PM
Mình chỉ trợ giúp trên ITVNN, bạn có thay đổi gì trong skin không
Do em gà cái này lắm nên cũng chỉ làm theo hướng dẫn thui, em up file XML lên rùi up foder image lên host thui ai ngờ nó bị thế này !
Skill nào thay vào cũng đều bị thế này, hay anh vào xem giúp cho em.
Acc của Admin là: [xoá bởi PhucSD]

PhucSD
01-08-2011, 06:16 PM
Lần sau đừng đưa thông tin về acc admin lên forum bạn nhé, có nhiều người sẽ sử dụng nó vào mục đích xấu, bạn thử del filoe xml của style đó và import lại xem còn lỗi không

coldboy
01-08-2011, 06:21 PM
Lần sau đừng đưa thông tin về acc admin lên forum bạn nhé, có nhiều người sẽ sử dụng nó vào mục đích xấu, bạn thử del filoe xml của style đó và import lại xem còn lỗi không
Vẫn bị lỗi anh ak, em sẽ gửi acc vào inbox cho anh .

PhucSD
01-08-2011, 06:56 PM
Vẫn bị lỗi anh ak, em sẽ gửi acc vào inbox cho anh .

Lưu ý : những skin của completevB trước đây đều bị lỗi với vbb 4.1.5

coldboy
01-08-2011, 10:20 PM
Lưu ý : những skin của completevB trước đây đều bị lỗi với vbb 4.1.5
Không có Skin mới cho vbb1.1.5 hả anh?

coldboy
02-08-2011, 09:28 AM
Có ai giúp em không :(