Oº°‘¨ [C]hia [S]ẻ [O]nline ¨‘°ºO
♥️Chào Mừng Các Bạn Ghé Thăm Forum Chia Sẻ Online♥️
Rất mong các bạn đăng ký làm thành viên để cùng
nhau chia sẻ mọi nỗi buồn vui
Chúc các bạn có những phút thư giãn vui vẻ
♥️Welcome to forum Chia Sẻ Online♥️
Oº°‘¨ [C]hia [S]ẻ [O]nline ¨‘°ºO
♥️Chào Mừng Các Bạn Ghé Thăm Forum Chia Sẻ Online♥️
Rất mong các bạn đăng ký làm thành viên để cùng
nhau chia sẻ mọi nỗi buồn vui
Chúc các bạn có những phút thư giãn vui vẻ
♥️Welcome to forum Chia Sẻ Online♥️
Welcome Guest, is this your first visit? Register
All times are GMT. The time now is 07:28 AM.

You are not connected. Please login or register

[Show] Trang Chủ CSS-Style

3 posters

Go down  Thông điệp [Trang 1 trong tổng số 1 trang]

1[Show] Trang Chủ CSS-Style Empty [Show] Trang Chủ CSS-Style Thu May 10, 2012 10:18 pm

rockmanvnx6

rockmanvnx6
Thành Viên
Thành Viên

[You must be registered and logged in to see this link.]
Mọi người vào xem rồi cho ý kiến nha mới design thêm cái chức năng đăng nhập cho khách + Chống Rip . Cái này đã mời My Des rồi mà des chậm nên ráng chịu nhé [Show] Trang Chủ CSS-Style 986484739 . Mọi người xem và cho ý kiến + góp ý cho mình nha . Hi Vọng sẽ có dịp share trong 1 ngày gần đây >Cười nhăn răng<

http://css-style.forumvi.com/

2[Show] Trang Chủ CSS-Style Empty Re: [Show] Trang Chủ CSS-Style Thu May 10, 2012 10:44 pm

anhdausai

anhdausai
Thành Viên
Thành Viên

code cho ai cần nè
Code:

<html style="overflow-y: hidden; ">

<title>CSS-Style</title>

<link href="http://i1102.photobucket.com/albums/g446/rockmanvnx6/CSS-Style.png" rel="shortcut icon" />

<meta content="Sales" name="aesop" />

<meta content="index, follow" name="ROBOTS" />

<meta content="General" name="RATING" />

<meta content="1" name="REVISIT-AFTER" />

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<style type="text/css">

<!--

a:link {

text-decoration: none;

color: #FFFFFF;

}

a:visited {

text-decoration: none;

}

a:hover {

text-decoration: none;

color: #999999;

}

a:active {

text-decoration: none;

}

a {

font-family: Verdana, Arial, Helvetica, sans-serif;

font-size: 12px;

color:#FFFFFF;

}

body,td,th {

font-family: Verdana, Arial, Helvetica, sans-serif;

color: #FFFFFF;

font-size: 11px;

}

body {

margin-top: 0px;

margin-bottom: 0px;

background-image: url();

margin-left: 0px;

margin-right: 0px;

background-color: #000000;

}

.buttoncss{

background: url('http://www.vietnamstart.com/image_index/index2010_logo_1a.png') no-repeat;

width: 254px;

height: 254px;

-moz-transition: all 0.8s ease-in-out;

-webkit-transition: all 0.8s ease-in-out;

-o-transition: all 0.8s ease-in-out;

-ms-transition: all 0.8s ease-in-out;

transition: all 0.8s ease-in-out;

}

.buttoncss:hover{

background: url('http://www.vietnamstart.com/image_index/index2010_logo_2a.png') no-repeat;

width: 254px;

height: 254px;

-moz-transform: rotate(360deg);

-webkit-transform: rotate(360deg);

-o-transform: rotate(360deg);

-ms-transform: rotate(360deg);

transform: rotate(360deg);

}

.style9 {color: #993300}

img { behavior: url("http://www.vietnamstart.com/iepngfix/iepngfix.htc") }

--></style>

<script>

// IE5.5+ PNG Alpha Fix v2.0 Alpha: Background Tiling Support

// (c) 2008-2009 Angus Turnbull http://www.twinhelix.com

// This is licensed under the GNU LGPL, version 2.1 or later.

// For details, see: http://creativecommons.org/licenses/LGPL/2.1/

var IEPNGFix = window.IEPNGFix || {};

IEPNGFix.tileBG = function(elm, pngSrc, ready) {

// Params: A reference to a DOM element, the PNG src file pathname, and a

// hidden "ready-to-run" passed when called back after image preloading.

var data = this.data[elm.uniqueID],

elmW = Math.max(elm.clientWidth, elm.scrollWidth),

elmH = Math.max(elm.clientHeight, elm.scrollHeight),

bgX = elm.currentStyle.backgroundPositionX,

bgY = elm.currentStyle.backgroundPositionY,

bgR = elm.currentStyle.backgroundRepeat;

// Cache of DIVs created per element, and image preloader/data.

if (!data.tiles) {

data.tiles = {

elm: elm,

src: '',

cache: [],

img: new Image(),

old: {}

};

}

var tiles = data.tiles,

pngW = tiles.img.width,

pngH = tiles.img.height;

if (pngSrc) {

if (!ready && pngSrc != tiles.src) {

// New image? Preload it with a callback to detect dimensions.

tiles.img.onload = function() {

this.onload = null;

IEPNGFix.tileBG(elm, pngSrc, 1);

};

return tiles.img.src = pngSrc;

}

} else {

// No image?

if (tiles.src) ready = 1;

pngW = pngH = 0;

}

tiles.src = pngSrc;

if (!ready && elmW == tiles.old.w && elmH == tiles.old.h &&

bgX == tiles.old.x && bgY == tiles.old.y && bgR == tiles.old.r) {

return;

}

// Convert English and percentage positions to pixels.

var pos = {

top: '0%',

left: '0%',

center: '50%',

bottom: '100%',

right: '100%'

},

x,

y,

pc;

x = pos[bgX] || bgX;

y = pos[bgY] || bgY;

if (pc = x.match(/(\d+)%/)) {

x = Math.round((elmW - pngW) * (parseInt(pc[1]) / 100));

}

if (pc = y.match(/(\d+)%/)) {

y = Math.round((elmH - pngH) * (parseInt(pc[1]) / 100));

}

x = parseInt(x);

y = parseInt(y);

// Handle backgroundRepeat.

var repeatX = { 'repeat': 1, 'repeat-x': 1 }[bgR],

repeatY = { 'repeat': 1, 'repeat-y': 1 }[bgR];

if (repeatX) {

x %= pngW;

if (x > 0) x -= pngW;

}

if (repeatY) {

y %= pngH;

if (y > 0) y -= pngH;

}

// Go!

this.hook.enabled = 0;

if (!({ relative: 1, absolute: 1 }[elm.currentStyle.position])) {

elm.style.position = 'relative';

}

var count = 0,

xPos,

maxX = repeatX ? elmW : x + 0.1,

yPos,

maxY = repeatY ? elmH : y + 0.1,

d,

s,

isNew;

if (pngW && pngH) {

for (xPos = x; xPos < maxX; xPos += pngW) {

for (yPos = y; yPos < maxY; yPos += pngH) {

isNew = 0;

if (!tiles.cache[count]) {

tiles.cache[count] = document.createElement('div');

isNew = 1;

}

var clipR = Math.max(0, xPos + pngW > elmW ? elmW - xPos : pngW),

clipB = Math.max(0, yPos + pngH > elmH ? elmH - yPos : pngH);

d = tiles.cache[count];

s = d.style;

s.behavior = 'none';

s.left = (xPos - parseInt(elm.currentStyle.paddingLeft)) + 'px';

s.top = yPos + 'px';

s.width = clipR + 'px';

s.height = clipB + 'px';

s.clip = 'rect(' +

(yPos < 0 ? 0 - yPos : 0) + 'px,' +

clipR + 'px,' +

clipB + 'px,' +

(xPos < 0 ? 0 - xPos : 0) + 'px)';

s.display = 'block';

if (isNew) {

s.position = 'absolute';

s.zIndex = -999;

if (elm.firstChild) {

elm.insertBefore(d, elm.firstChild);

} else {

elm.appendChild(d);

}

}

this.fix(d, pngSrc, 0);

count++;

}

}

}

while (count < tiles.cache.length) {

this.fix(tiles.cache[count], '', 0);

tiles.cache[count++].style.display = 'none';

}

this.hook.enabled = 1;

// Cache so updates are infrequent.

tiles.old = {

w: elmW,

h: elmH,

x: bgX,

y: bgY,

r: bgR

};

};

IEPNGFix.update = function() {

// Update all PNG backgrounds.

for (var i in IEPNGFix.data) {

var t = IEPNGFix.data[i].tiles;

if (t && t.elm && t.src) {

IEPNGFix.tileBG(t.elm, t.src);

}

}

};

IEPNGFix.update.timer = 0;

if (window.attachEvent && !window.opera) {

window.attachEvent('onresize', function() {

clearTimeout(IEPNGFix.update.timer);

IEPNGFix.update.timer = setTimeout(IEPNGFix.update, 100);

});

}

</script><script language="JavaScript" type="text/JavaScript">

<!--

function MM_preloadImages() { [You must be registered and logged in to see this link.]

var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();

var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)

if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}

}

function MM_swapImgRestore() { [You must be registered and logged in to see this link.]

var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;

}

function MM_findObj(n, d) { [You must be registered and logged in to see this link.]

var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {

d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}

if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];

for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);

if(!x && d.getElementById) x=d.getElementById(n); return x;

}

function MM_swapImage() { [You must be registered and logged in to see this link.]

var</dj=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)

if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}

}

//-->

</script><SCRIPT language=javascript src="ems_files/function.js"></SCRIPT>

<link href="http://www.vietnamstart.com/ems_files/MasterCss.css" rel="stylesheet" type="text/css" />

<meta content="MSHTML 6.00.2900.2180" name="GENERATOR" />

<style type="text/css">

<!--

.style11 {color: #CCCCCC}

.style14 {color: #999999; }

.style15 {color: #666666; }

.style6 {font-size: 12px}

.style16 {color: #333333; }

--></style>
<div align="center">

<table align="center" background="http://www.vietnamstart.com/image_index/index2010_bg.jpg" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">

<tbody>

<tr align="center" valign="top">

<td valign="top">

<table align="center" border="0" cellpadding="0" cellspacing="0" height="450" width="948">

<tbody>

<tr>

<td align="right" scope="col" valign="middle" width="220">

<p>

<a href="/forum"><img border="0" src="http://dl.dropbox.com/u/47626020/cooltext691062068.png" /></a></p>

<p>

 </p>

</td>

<td align="center" height="125" scope="col" valign="middle" width="508">

 </td>

<td align="left" scope="col" valign="middle" width="220">

<p>

<a href="/forum"><img border="0" src="http://dl.dropbox.com/u/47626020/cooltext691062068.png" /></a></p>

<p>

 </p>

</td>

</tr>

<tr>

<td align="right" scope="col" valign="top" width="220">

 </td>

<td align="center" height="325" scope="col" valign="middle">

<a href="/forum"><div class="buttoncss">

 </div></a>

</td>

<td align="left" scope="col" valign="top" width="220">

 </td>

</tr>

<tr>

<td align="right" scope="col" valign="top" width="220">

 </td>

<td align="center" scope="col" valign="top">

<span class="style6"><b>Click để vào diễn đàn CSS-Style </b></span></td>

<td align="left" scope="col" valign="top" width="220">

 </td>

</tr>

</tbody>

</table>

<p align="center" class="style11">

 </p>

<p align="center" class="style16">

<br />

<span class="style15">Ripped to FM Rockman_vnx6 - CSS-style.forumvi.com</span></p>

<p align="center" class="style14">

<a href="/forum"><img border="0" src="http://i1128.photobucket.com/albums/m482/lilebi/3-2.png" /></a></p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

</td>

</tr>

</tbody>

</table>

<script type="text/javascript">

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");

document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

</script><script type="text/javascript">

try {

var pageTracker = _gat._getTracker("UA-9989982-1");

pageTracker._trackPageview();

} catch(err) {}</script></div>

<embed autostart="true" hidden="true" loop="true" src="http://dc364.4shared.com/img/835026962/5ba4dbd5/dlink__2Fdownload_2FNVLMmu92_3Ftsid_3D00000000-000000-00000000/preview.mp3"></embed>

<center>
<div style="border-top:1px solid #666666; height:20px;  padding:1px; background: #333333 none repeat scroll 0% 0%; position: fixed; bottom: 0pt; right: 0pt; left: 0pt; width: 100%; z-index: 100; text-align: center; font-size:12pt;">

<center>

<font size="1" style="color:gray;font-weight:bold;">Protected by <a href="http://www.forumvi.com" target="_blank">forumvi.com</a></font></center>

</div>

</center>

http://lythuongkiet.yourme.net

3[Show] Trang Chủ CSS-Style Empty Re: [Show] Trang Chủ CSS-Style Thu May 10, 2012 11:17 pm

-CuBimtQ™

-CuBimtQ™
Coder
Coder

Bim xin được nói thằng ý kiến nghen.hehe
Đừng nghĩ Bim gì nghen.hihi
chỉ là góp ý chọn bạn thui.hihi
Bạn đã biết viết code?.
Rứa tại sao k tự design cho mình 1 skin.
Cấu trúc đã có, chỉ là bạn sắp xếp sao cho hợp lý và phối CSS cùng để hoàn thiện hơn, Rum chuyên CSS mà.hehe
Áp dụng chủ yếu là Fmvi ver.2 nên không có gì đặc biệt.hehe
Vì sao? vì đã có quá nhiều rum khác cũng dùng skin ni.hehe
Nói chung, nếu nhu xét tổng quát thì rum nhẹ, load nhanh, gọn, đẹp.
Nhưng nên sáng tạo đôi chút.hehe
Bim xin hết ý kiến.hehe

http://streetcrew.forum.st/

4[Show] Trang Chủ CSS-Style Empty Re: [Show] Trang Chủ CSS-Style Fri May 11, 2012 11:06 am

rockmanvnx6

rockmanvnx6
Thành Viên
Thành Viên

[You must be registered and logged in to see this link.]
anhdausai đã viết:code cho ai cần nè
Code:

<html style="overflow-y: hidden; ">

<title>CSS-Style</title>

<link href="http://i1102.photobucket.com/albums/g446/rockmanvnx6/CSS-Style.png" rel="shortcut icon" />

<meta content="Sales" name="aesop" />

<meta content="index, follow" name="ROBOTS" />

<meta content="General" name="RATING" />

<meta content="1" name="REVISIT-AFTER" />

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<style type="text/css">

<!--

a:link {

text-decoration: none;

color: #FFFFFF;

}

a:visited {

text-decoration: none;

}

a:hover {

text-decoration: none;

color: #999999;

}

a:active {

text-decoration: none;

}

a {

font-family: Verdana, Arial, Helvetica, sans-serif;

font-size: 12px;

color:#FFFFFF;

}

body,td,th {

font-family: Verdana, Arial, Helvetica, sans-serif;

color: #FFFFFF;

font-size: 11px;

}

body {

margin-top: 0px;

margin-bottom: 0px;

background-image: url();

margin-left: 0px;

margin-right: 0px;

background-color: #000000;

}

.buttoncss{

background: url('http://www.vietnamstart.com/image_index/index2010_logo_1a.png') no-repeat;

width: 254px;

height: 254px;

-moz-transition: all 0.8s ease-in-out;

-webkit-transition: all 0.8s ease-in-out;

-o-transition: all 0.8s ease-in-out;

-ms-transition: all 0.8s ease-in-out;

transition: all 0.8s ease-in-out;

}

.buttoncss:hover{

background: url('http://www.vietnamstart.com/image_index/index2010_logo_2a.png') no-repeat;

width: 254px;

height: 254px;

-moz-transform: rotate(360deg);

-webkit-transform: rotate(360deg);

-o-transform: rotate(360deg);

-ms-transform: rotate(360deg);

transform: rotate(360deg);

}

.style9 {color: #993300}

img { behavior: url("http://www.vietnamstart.com/iepngfix/iepngfix.htc") }

--></style>

<script>

// IE5.5+ PNG Alpha Fix v2.0 Alpha: Background Tiling Support

// (c) 2008-2009 Angus Turnbull http://www.twinhelix.com

// This is licensed under the GNU LGPL, version 2.1 or later.

// For details, see: http://creativecommons.org/licenses/LGPL/2.1/

var IEPNGFix = window.IEPNGFix || {};

IEPNGFix.tileBG = function(elm, pngSrc, ready) {

// Params: A reference to a DOM element, the PNG src file pathname, and a

// hidden "ready-to-run" passed when called back after image preloading.

var data = this.data[elm.uniqueID],

elmW = Math.max(elm.clientWidth, elm.scrollWidth),

elmH = Math.max(elm.clientHeight, elm.scrollHeight),

bgX = elm.currentStyle.backgroundPositionX,

bgY = elm.currentStyle.backgroundPositionY,

bgR = elm.currentStyle.backgroundRepeat;

// Cache of DIVs created per element, and image preloader/data.

if (!data.tiles) {

data.tiles = {

elm: elm,

src: '',

cache: [],

img: new Image(),

old: {}

};

}

var tiles = data.tiles,

pngW = tiles.img.width,

pngH = tiles.img.height;

if (pngSrc) {

if (!ready && pngSrc != tiles.src) {

// New image? Preload it with a callback to detect dimensions.

tiles.img.onload = function() {

this.onload = null;

IEPNGFix.tileBG(elm, pngSrc, 1);

};

return tiles.img.src = pngSrc;

}

} else {

// No image?

if (tiles.src) ready = 1;

pngW = pngH = 0;

}

tiles.src = pngSrc;

if (!ready && elmW == tiles.old.w && elmH == tiles.old.h &&

bgX == tiles.old.x && bgY == tiles.old.y && bgR == tiles.old.r) {

return;

}

// Convert English and percentage positions to pixels.

var pos = {

top: '0%',

left: '0%',

center: '50%',

bottom: '100%',

right: '100%'

},

x,

y,

pc;

x = pos[bgX] || bgX;

y = pos[bgY] || bgY;

if (pc = x.match(/(\d+)%/)) {

x = Math.round((elmW - pngW) * (parseInt(pc[1]) / 100));

}

if (pc = y.match(/(\d+)%/)) {

y = Math.round((elmH - pngH) * (parseInt(pc[1]) / 100));

}

x = parseInt(x);

y = parseInt(y);

// Handle backgroundRepeat.

var repeatX = { 'repeat': 1, 'repeat-x': 1 }[bgR],

repeatY = { 'repeat': 1, 'repeat-y': 1 }[bgR];

if (repeatX) {

x %= pngW;

if (x > 0) x -= pngW;

}

if (repeatY) {

y %= pngH;

if (y > 0) y -= pngH;

}

// Go!

this.hook.enabled = 0;

if (!({ relative: 1, absolute: 1 }[elm.currentStyle.position])) {

elm.style.position = 'relative';

}

var count = 0,

xPos,

maxX = repeatX ? elmW : x + 0.1,

yPos,

maxY = repeatY ? elmH : y + 0.1,

d,

s,

isNew;

if (pngW && pngH) {

for (xPos = x; xPos < maxX; xPos += pngW) {

for (yPos = y; yPos < maxY; yPos += pngH) {

isNew = 0;

if (!tiles.cache[count]) {

tiles.cache[count] = document.createElement('div');

isNew = 1;

}

var clipR = Math.max(0, xPos + pngW > elmW ? elmW - xPos : pngW),

clipB = Math.max(0, yPos + pngH > elmH ? elmH - yPos : pngH);

d = tiles.cache[count];

s = d.style;

s.behavior = 'none';

s.left = (xPos - parseInt(elm.currentStyle.paddingLeft)) + 'px';

s.top = yPos + 'px';

s.width = clipR + 'px';

s.height = clipB + 'px';

s.clip = 'rect(' +

(yPos < 0 ? 0 - yPos : 0) + 'px,' +

clipR + 'px,' +

clipB + 'px,' +

(xPos < 0 ? 0 - xPos : 0) + 'px)';

s.display = 'block';

if (isNew) {

s.position = 'absolute';

s.zIndex = -999;

if (elm.firstChild) {

elm.insertBefore(d, elm.firstChild);

} else {

elm.appendChild(d);

}

}

this.fix(d, pngSrc, 0);

count++;

}

}

}

while (count < tiles.cache.length) {

this.fix(tiles.cache[count], '', 0);

tiles.cache[count++].style.display = 'none';

}

this.hook.enabled = 1;

// Cache so updates are infrequent.

tiles.old = {

w: elmW,

h: elmH,

x: bgX,

y: bgY,

r: bgR

};

};

IEPNGFix.update = function() {

// Update all PNG backgrounds.

for (var i in IEPNGFix.data) {

var t = IEPNGFix.data[i].tiles;

if (t && t.elm && t.src) {

IEPNGFix.tileBG(t.elm, t.src);

}

}

};

IEPNGFix.update.timer = 0;

if (window.attachEvent && !window.opera) {

window.attachEvent('onresize', function() {

clearTimeout(IEPNGFix.update.timer);

IEPNGFix.update.timer = setTimeout(IEPNGFix.update, 100);

});

}

</script><script language="JavaScript" type="text/JavaScript">

<!--

function MM_preloadImages() { [You must be registered and logged in to see this link.]

var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();

var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)

if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}

}

function MM_swapImgRestore() { [You must be registered and logged in to see this link.]

var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;

}

function MM_findObj(n, d) { [You must be registered and logged in to see this link.]

var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {

d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}

if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];

for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);

if(!x && d.getElementById) x=d.getElementById(n); return x;

}

function MM_swapImage() { [You must be registered and logged in to see this link.]

var</dj=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)

if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}

}

//-->

</script><SCRIPT language=javascript src="ems_files/function.js"></SCRIPT>

<link href="http://www.vietnamstart.com/ems_files/MasterCss.css" rel="stylesheet" type="text/css" />

<meta content="MSHTML 6.00.2900.2180" name="GENERATOR" />

<style type="text/css">

<!--

.style11 {color: #CCCCCC}

.style14 {color: #999999; }

.style15 {color: #666666; }

.style6 {font-size: 12px}

.style16 {color: #333333; }

--></style>
<div align="center">

<table align="center" background="http://www.vietnamstart.com/image_index/index2010_bg.jpg" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">

<tbody>

<tr align="center" valign="top">

<td valign="top">

<table align="center" border="0" cellpadding="0" cellspacing="0" height="450" width="948">

<tbody>

<tr>

<td align="right" scope="col" valign="middle" width="220">

<p>

<a href="/forum"><img border="0" src="http://dl.dropbox.com/u/47626020/cooltext691062068.png" /></a></p>

<p>

 </p>

</td>

<td align="center" height="125" scope="col" valign="middle" width="508">

 </td>

<td align="left" scope="col" valign="middle" width="220">

<p>

<a href="/forum"><img border="0" src="http://dl.dropbox.com/u/47626020/cooltext691062068.png" /></a></p>

<p>

 </p>

</td>

</tr>

<tr>

<td align="right" scope="col" valign="top" width="220">

 </td>

<td align="center" height="325" scope="col" valign="middle">

<a href="/forum"><div class="buttoncss">

 </div></a>

</td>

<td align="left" scope="col" valign="top" width="220">

 </td>

</tr>

<tr>

<td align="right" scope="col" valign="top" width="220">

 </td>

<td align="center" scope="col" valign="top">

<span class="style6"><b>Click để vào diễn đàn CSS-Style </b></span></td>

<td align="left" scope="col" valign="top" width="220">

 </td>

</tr>

</tbody>

</table>

<p align="center" class="style11">

 </p>

<p align="center" class="style16">

<br />

<span class="style15">Ripped to FM Rockman_vnx6 - CSS-style.forumvi.com</span></p>

<p align="center" class="style14">

<a href="/forum"><img border="0" src="http://i1128.photobucket.com/albums/m482/lilebi/3-2.png" /></a></p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

<p align="center" class="style9">

 </p>

</td>

</tr>

</tbody>

</table>

<script type="text/javascript">

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");

document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

</script><script type="text/javascript">

try {

var pageTracker = _gat._getTracker("UA-9989982-1");

pageTracker._trackPageview();

} catch(err) {}</script></div>

<embed autostart="true" hidden="true" loop="true" src="http://dc364.4shared.com/img/835026962/5ba4dbd5/dlink__2Fdownload_2FNVLMmu92_3Ftsid_3D00000000-000000-00000000/preview.mp3"></embed>

<center>
<div style="border-top:1px solid #666666; height:20px;  padding:1px; background: #333333 none repeat scroll 0% 0%; position: fixed; bottom: 0pt; right: 0pt; left: 0pt; width: 100%; z-index: 100; text-align: center; font-size:12pt;">

<center>

<font size="1" style="color:gray;font-weight:bold;">Protected by <a href="http://www.forumvi.com" target="_blank">forumvi.com</a></font></center>

</div>

</center>
Cái này Ver Free , không có chế độ vào = nick khách Cười nhăn răng: Mình đã chia sẻ rồi :|
* Lưu ý : Lần sau ghi nguồn nhé



Được sửa bởi rockmanvnx6 ngày Fri May 11, 2012 11:18 am; sửa lần 1.

http://css-style.forumvi.com/

5[Show] Trang Chủ CSS-Style Empty Re: [Show] Trang Chủ CSS-Style Fri May 11, 2012 11:09 am

rockmanvnx6

rockmanvnx6
Thành Viên
Thành Viên

[You must be registered and logged in to see this link.]
-CuBimtQ™️ đã viết:Bim xin được nói thằng ý kiến nghen.hehe
Đừng nghĩ Bim gì nghen.hihi
chỉ là góp ý chọn bạn thui.hihi
Bạn đã biết viết code?.
Rứa tại sao k tự design cho mình 1 skin.
Cấu trúc đã có, chỉ là bạn sắp xếp sao cho hợp lý và phối CSS cùng để hoàn thiện hơn, Rum chuyên CSS mà.hehe
Áp dụng chủ yếu là Fmvi ver.2 nên không có gì đặc biệt.hehe
Vì sao? vì đã có quá nhiều rum khác cũng dùng skin ni.hehe
Nói chung, nếu nhu xét tổng quát thì rum nhẹ, load nhanh, gọn, đẹp.
Nhưng nên sáng tạo đôi chút.hehe
Bim xin hết ý kiến.hehe
Skin này mình chỉ design đc cái index-box sao cho nóa gọn và đẹp hơn 1 tẹo vì tất cả những thứ khác mình thấy nó hợp lý rồi !
Nhà Có mỗi paint nên không thử tự Design 1 skin .
Bố cục đã được baivong sắp xếp quá hợp lý nên không biết phải thêm cái gì nữa Buồn . Bim Đã Nói vậy thì cho mình xin cái ý tưởng để mình làm Cười nhăn răng:

http://css-style.forumvi.com/

6[Show] Trang Chủ CSS-Style Empty Re: [Show] Trang Chủ CSS-Style Fri May 11, 2012 12:17 pm

-CuBimtQ™

-CuBimtQ™
Coder
Coder

[You must be registered and logged in to see this link.]
rockmanvnx6 đã viết:[You must be registered and logged in to see this link.]
-CuBimtQ™️ đã viết:Bim xin được nói thằng ý kiến nghen.hehe
Đừng nghĩ Bim gì nghen.hihi
chỉ là góp ý chọn bạn thui.hihi
Bạn đã biết viết code?.
Rứa tại sao k tự design cho mình 1 skin.
Cấu trúc đã có, chỉ là bạn sắp xếp sao cho hợp lý và phối CSS cùng để hoàn thiện hơn, Rum chuyên CSS mà.hehe
Áp dụng chủ yếu là Fmvi ver.2 nên không có gì đặc biệt.hehe
Vì sao? vì đã có quá nhiều rum khác cũng dùng skin ni.hehe
Nói chung, nếu nhu xét tổng quát thì rum nhẹ, load nhanh, gọn, đẹp.
Nhưng nên sáng tạo đôi chút.hehe
Bim xin hết ý kiến.hehe
Skin này mình chỉ design đc cái index-box sao cho nóa gọn và đẹp hơn 1 tẹo vì tất cả những thứ khác mình thấy nó hợp lý rồi !
Nhà Có mỗi paint nên không thử tự Design 1 skin .
Bố cục đã được baivong sắp xếp quá hợp lý nên không biết phải thêm cái gì nữa Buồn . Bim Đã Nói vậy thì cho mình xin cái ý tưởng để mình làm Cười nhăn răng:
Bim không nói đến bố cục xắp xếp đâu á.hehe
Bim nói nếu như bạn chuyên về CSS, mà 1 rum thì cần CSS để làm rum có màu mè, đẹp hơn.
Như rứa, hãy sử dụng kiến thức về CSS để trang trí lại rum theo 1 phong cách khác mà bạn tự nghĩ ra chứ đừng theo phong cách Fmvi nữa.Vui vẻ
Bim không nói Fmvi là xấu, ý Bim là giao diện nớ đã có quá nhiều người dùng rùi.hihi
Bạn hiểu ý Bim chứ.hehe

http://streetcrew.forum.st/

7[Show] Trang Chủ CSS-Style Empty Re: [Show] Trang Chủ CSS-Style Fri May 11, 2012 1:22 pm

rockmanvnx6

rockmanvnx6
Thành Viên
Thành Viên

Cám ơn bim đã góp ý nha :D

http://css-style.forumvi.com/

Sponsored content



Về Đầu Trang  Thông điệp [Trang 1 trong tổng số 1 trang]

Permissions in this forum:
Bạn không có quyền trả lời bài viết