วันพฤหัสบดี, พฤษภาคม 17, 2550

css display:none ไม่มีอะไรจะแสดง

มาดูว่าเราจะสั่งให้มัลติพลายไม่แสดงอะไรได้บ้าง

- ไม่แสดง แถว home blog photo music ... (ซึ่งก็ไม่รู้ว่าจะไม่แสดงไปทำไมอะนะ หุหุ)
-----------------------------------------------------
div#subnav {
display:none;
}


- ไม่แสดง icon ในไอเทม
-------------------------------------------------------
.itemboxsub .icon img {
display: none;
}

- ไม่แสดง---
------------------------------------------------------
LI.gnopt A IMG {
DISPLAY: none;
}



-ไม่แสดง แถวล่าง © 2007 Multiply, Inc.About · Blog · Terms · Privacy · Corp Info ·......
-----------------------------------------------------
div#ownedfooter {
display:none;
}




-ไม่แสดง logo header
-----------------------------------------------------
.rail .userlogo {
display: none ! important;
}




- ไม่แสดง ไอคอน
------------------------------------------------------
.icon { visibility: hidden; display: none; }



- ไม่แสดง ไอคอน + เขียว
-------------------------------------------------------------
a.select, a:link.select, a:visited.select {
background: none;
}
div.select {
background: none;
}

a.add, a:link.add, a:visited.add {
background: none;
}




- ไม่แสดง ไอคอน +
-------------------------------------------------------------
.add { visibility: hidden;}




- ไม่แสดง ไอคอน เลือกหมด
-------------------------------------------------------------
.select { visibility: hidden;}



- ไม่แสดง บอกว่าเจ้าของลบรีพายความเห็นตัวเอง
------------------------------------------------------------
.replydeleted {display:none;}



- ไม่แสดง ไอค่อน 6ตัว แถวบน
------------------------------------------------------------

/* Header */
.header .globalnav ul.gnopt img {
display: none;
}

or in equivalent manner

/* Header */
.header .globalnav li.gnopt img {
display: none;
}
.header .globalnav li.gnoptsel img {
display: none;
}

or in another equivalent manner
/* Header */
.header .globalnav li.gnopt a img {
display: none;
}
.header .globalnav li.gnoptsel a img {
display: none;
}




- ไม่แสดง ไอค่อน ไตเติ้ล
-----------------------------------------------
/* title boxes */
.itemboxsub .icon img {
display: none;
}

- ไม่แสดง ไอค่อน ในหน้าคอนแท้กและกลุ่ม
-----------------------------------------------
/* Links in contact and group pages */
.openbox .post img {
display: none;
}


- ไม่แสดง ไอเฟรม
-----------------------------------------------
iframe {display: none;}




-ไม่แสดง ข้างขวา
------------------------------
/* right rail links */
ul.sidelist a, ul.sidelist a:visited, ul.sidelist a:link {
color: #F49AC1;
}
#rail iframe{display:none;}a.go,a:visited.go a:link.go,.go{background:transparent




-ไม่แสดง อักษร ข้างขวา
-----------------------------------------
.railbody p {
display: none;
}


-ไม่แสดงรูปโพสลงเกสบุค
---------------------------------------
#home_guestbook .replybody img { display: none; }


-ไม่แสดงลิงค์ที่แปะลงเกสบุค
------------------------------------------
#home_guestbook div.actionlinks { display: none }


-ไม่แสดงโลด เกือบทั้งเวป
-----------------------------------------------
body {display: none;}


ไม่แสดงข้างขวา
---------------------------------------------------------
#rail iframe{display:none;
}

ไม่แสดงข้างขวา
---------------------------------------------------------
div#rail iframe {opacity: 0;}
div#rail iframe:hover {opacity: 100;
background:transparent;
}

ไม่แสดงอะไรที่ล้นกรอบ มีสกอลบาร์ให้เกสบุค
---------------------------------------------------------

     #home_guestbook .replybox { overflow:auto; }


- ยังหาอย่างอื่นม่ายเจอ
-----------------------------------------------------


this code

.railbody p {
display:none;
}

will hide
status, name and country


the only country is hidable at this way

.railbody p i {
display:none;
}



the only status is hidable at this way

.railbody p b {
display:none;
}


the only name is hidable at this way

.railbody p {
display:none;
}
.railbody p i, .railbody p b {
display:block;
}

----------------------------------------------------------------------------------

ไม่แสดง "Comment deleted at the request of the author"
--
.replydeleted {
display:none;
}


------------------------------------------------------------------------------------


ไม่แสดงวันที่ของอัลบั้ม
this will remove the date

.itemsubsub nobr {display:none;}



this will remove the date the author and the target

.itemsubsub {display:none;}


this will remove the target

.itemsubsub {visibility:hidden;}
.itemsubsub a {visibility:visible;}
.itemsubsub nobr {visibility:visible;}


this preserve only the author of the post
removing the date and the target

.itemsubsub {visibility:hidden;}
.itemsubsub a {visibility:visible;}

----------------------------------------------------------------------------


Removing Icons from Themes

- Top header:
li.gnopt a img, li.gnoptsel a img { display: none; }

- Boxes:
.itemboxsub .icon img { display: none; }
or (this also removes the space used by the icon - thanks to bindra)
.itemboxsub .icon { display: none; }

- Right rail (most themes):
ul.sidelist li, ul.sidelist li a { list-style-image: none; background: none; }

- Plus and arrow on itemboxes:
.itembox .viewmore a.add, .itembox .viewmore a.select { background: none; }


You can replace them with your own images using url(IMAGE_URL) instead of none, of course, where IMAGE_URL is the URL of the image you want to use.


---------------------------------------------------------------------------------------------------------------------------

ซ่อน online status ใน mini profile


div#miniprofile_div div.address {
display:none;
}



-----------------------------------------------------------------------------------------------------------------------


ทำ railให้โล่ง

.railbody
{
background-image:none;
background-color:transparent;
border:0px solid #fff;
}
.rail
{
background-image:none;
background-color:transparent;
border:0px solid #fff;
}
td.rail
{
background-image:none;
background-color:transparent;
border:0px solid #fff;
}
.railstart
{
background-image:none;
background-color:transparent;
border:0px solid #fff;
}

----------------------------------------------------

Removes posted date only

.posteddate {
display: none;
}


-----------------------------------------------------------------------------

ไม่แสดงจำนวนcomment

span#numcommentslabel.voptlabel { visibility: hidden; }

หรือ

the number of comments 
.voptlabel { 
color: #000;
}
make it same color as page background then like here on this group number of comments will not show

-------------------------------------------------------------------------

.userboxlogo img {
visibility: hidden; <--- removed the P
}
.userboxlogo a img {
visibility: visible; <-- kept the headshot

---------------------------------------------------------------------------------------

ไม่แสดง username ในโลโก้

.railbody .userlogo a, .railbody .userlogo a:link, .railbody .userlogo a:visited { visibility:hidden;
}


---------------------------------------------

ไม่แสดง ชื่อกรุป  ใต้โลโก้กรุป

div#rail b{
display:none;
}


http://grouped.multiply.com/reviews/item/23

29 ความคิดเห็น:

Somjit . กล่าวว่า...

นั่นดิ

งง อ่ะ

[[[ Hyper ao ]]] กล่าวว่า...

หาต่อไปป๋า

εΐз~AnG ~εΐз กล่าวว่า...

5555+

โจโจ้บา -บร้า กล่าวว่า...

555+

โจโจ้บา -บร้า กล่าวว่า...

html{
display: none;
}

โจโจ้บา -บร้า กล่าวว่า...

ผมล้อเล่นครับ อย่าไปไปลองนะครับ....5555555555555+

LaTTe ★ กล่าวว่า...

สารพัดความรู้จริงๆนะคะ

Pat ' กล่าวว่า...

ถ้าใึครเผลอไปกดลองนะ หึหึหึ เดือดร้อนนนนน....

明 เม้ง  ^__^ กล่าวว่า...

วางยา ใจฮ้ายยยยย

Pan PlantLovers กล่าวว่า...

หนูว่าแบบเดิมๆ เขาแหละดีแล้วพี่เม้ง

明 เม้ง  ^__^ กล่าวว่า...

จ้า หนูtsantad

โจโจ้บา -บร้า กล่าวว่า...

ไม่เหงเปงไรเลยงับ ถ้ามีไรเดี๋ยวอาจารย์เม้งจัดการให้ อิอิอิ

*~My PriNCeSs~* [^__^] กล่าวว่า...

เห็นด้วยค่ะ
แบบเดิมก็ดีแหละ

แต่เป้นการเพิ่มความรู้
ขอบคุณนะค่ะ อิอิ

Hornbill B กล่าวว่า...

มาอาศัยความรู้.. ขอบคุณครับ

phyche phyche123 กล่าวว่า...

ทำอะไรมะเปน ปล่อยๆเขาไว้งั้นแหละดีที่สุดเยย

Pan PlantLovers กล่าวว่า...

หัวเวบนี้ก็ไม่แสดงอยู่ละสิ
คลิกไม่ถูกอันเลย

明 เม้ง  ^__^ กล่าวว่า...

หัวเวป กลืนไปกับฉากหลัง คลิกที่รูปครับ

` aay .. กล่าวว่า...

ทำไมต้องปกปิด

ananda ~yui กล่าวว่า...

คารวะท่านเพ่

:: Lamyai :: กล่าวว่า...

หุ หุ ท่านลุง ป้างง งิ

เด๋ว ต้องมาใหม่ กลับไปบ้านดู ตัวเองก่อน

Raveepat Songmanee กล่าวว่า...

css หายอ่ะครับทำไงดีๆๆๆ

明 เม้ง  ^__^ กล่าวว่า...

ถ้าไม่ได้ก้อบเก็บไว้ก็ทำใจครับ

@diewland blogger กล่าวว่า...

ขอบคุณครับ :)

no name diary กล่าวว่า...

ลองเล่นดูมั่งดีกว่า

我 ... กล่าวว่า...

หุหุ เด๋วหน้าบ้านพังมาซ่อมให้ด้วยนะ

明 เม้ง  ^__^ กล่าวว่า...

ต้องไปหาพี่เบิร์ด ซ่อมได้

我 ... กล่าวว่า...

มาดูและหยิบไปใช้บางตัวนะก๊ะ

eung am i กล่าวว่า...

แฮะๆๆ

งงค่ะ ;P

明 เม้ง  ^__^ กล่าวว่า...

อิอิ อาการปกติฮับ