Help - Search - Members - Calendar
Full Version: HTML & Skin-related question
Forums > Resource Center > Webmasters' Corner > Webmasters' Corner Resolved Topics
chickaboom
Well I was doing a search for new Xanga skins, and stumbled upon this site... What a surprise happy.gif

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 ) blush.gif
eunie03
Here's the perfect skin for you, then:

http://www.createblog.com/forums/index.php?showtopic=16
krnxswat
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 -->
chickaboom
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'.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.