HTML & Skin-related question |
![]() ![]() |
HTML & Skin-related question |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Jan 2004 Member No: 1,764 ![]() |
Well I was doing a search for new Xanga skins, and stumbled upon this site... What a surprise
![]() My question is about using Xanga skins. I've already previewed all the ones at the xanga site and nothing really leaps out at me. What I'm looking for is a skin/layout that's simple and clean... where it's easy to edit colors etc. I'm after a xanga skin that doesn't have all the usual clutter (Subscriptions list, profile box, events and reviews links etc). I basically just want ONE side module that's wide enough to fit the calendar & some links, that's all. Unfortunately, I don't know HTML so I don't know how to change the code to tweak the layout & remove all the bits I don't want Can someone here provide some tips on how to get rid of side modules? Any HTML layout tips would be appreciated (hopefully I understand them ) ![]() |
|
|
*eunie03* |
![]()
Post
#2
|
Guest ![]() |
|
|
|
*krnxswat* |
![]()
Post
#3
|
Guest ![]() |
Here's the script to remove Posting Calendar, Get Involved!, etc
CODE <!-- begin code provided by createblog.com -->
<script language="javascript"><!-- // original by sean, http://www.xanga.com/seanmeister if (location.href.match ("home.aspx")) { var ht = document.getElementsByTagName ('table'); for (var t = 0; t < 10; t++) { str = ht[t].cells[0].innerHTML; if (!str.match (/Sites I Read/i) && str.match (/(Posting Calendar|Get Involved!|Build Traffic!)/i)) ht[t].style.display = "none"; } } //--></script> <!-- end code provided by createblog.com --> |
|
|
![]()
Post
#4
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Jan 2004 Member No: 1,764 ![]() |
QUOTE(krnxswat @ 01-27-2004, 12:18 AM) Here's the script to remove Posting Calendar, Get Involved!, etc CODE <!-- begin code provided by createblog.com --> <script language="javascript"><!-- // original by sean, http://www.xanga.com/seanmeister if (location.href.match ("home.aspx")) { var ht = document.getElementsByTagName ('table'); for (var t = 0; t < 10; t++) { str = ht[t].cells[0].innerHTML; if (!str.match (/Sites I Read/i) && str.match (/(Posting Calendar|Get Involved!|Build Traffic!)/i)) ht[t].style.display = "none"; } } //--></script> <!-- end code provided by createblog.com --> eunie03 - thanks! I'll try it! krnxswat - The Posting Calendar is the only thing I DON'T want removed. I want to remove everything else tho'. |
|
|
![]() ![]() |