Post centering, module deletion, and borders?, please help? |
Post centering, module deletion, and borders?, please help? |
![]()
Post
#1
|
|
![]() Newbie ![]() Group: Member Posts: 9 Joined: Feb 2004 Member No: 3,790 ![]() |
Alright, I've searched this site, and went through most pages trying to find the answers to my questions, without luck. So I turned to here, posting them hoping some nice person can help me out...
First thing--I'd like to know if theres a script that defaults all the text in your posts so that its centered [theres the option for it in the modules, but not the actual posts unless you have premium]. I know if you do edit html in the post, you can edit it so the text is centered, but I was wondering if there was one where you didnt have to edit every single one, so that it was the default? 2nd thing--I'm trying to find the script to have a border around your whole xanga, not around each entry, which is the only thing I could find here. Like this. 3rd thing-- Is there a way to just delete "Get Involved!"? the codes I've found delete all the modules [Subscriptions, posting calendar, get involved, etc.]. I just need that single one gone... Thanks so much, -Krissy Kat --------- My Xanga |
|
|
![]() |
![]()
Post
#2
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,826 Joined: Jan 2004 Member No: 2,330 ![]() |
here's the code for the third one
![]() CODE <!-- begin code provided by createblog.com -->
<script language="javascript"><!-- //Get Involved! Box Remover 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 (/(Get Involved!)/i)) ht[t].style.display = "none"; } } //--></script> <!-- end code provided by createblog.com --> |
|
|
![]()
Post
#3
|
|
![]() Newbie ![]() Group: Member Posts: 9 Joined: Feb 2004 Member No: 3,790 ![]() |
Thanks so much! It worked :-).
-Krissy Kat |
|
|
![]()
Post
#4
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,826 Joined: Jan 2004 Member No: 2,330 ![]() |
you're welcome
![]() |
|
|
![]()
Post
#5
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Aug 2004 Member No: 42,159 ![]() |
i would like to know how to the 2nd as well
|
|
|
![]()
Post
#6
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,826 Joined: Jan 2004 Member No: 2,330 ![]() |
actually i see how they did the second one now.. it's part of the "body" section in the css.. use this, just change the width and colors to your liking:
CODE <!-- begin code provided by createblog.com --> <style type="text/css"> body { border: 20px solid #FF1493; </style> <!-- end code provided by createblog.com --> and for the first one.. i think you can just use the xanga stylesheet found in the xanga scripts section and set all of the text sections to center |
|
|
![]()
Post
#7
|
|
![]() Newbie ![]() Group: Member Posts: 9 Joined: Feb 2004 Member No: 3,790 ![]() |
Thanks again :-). You're a wonderful person! but I'm confused with what you're saying about the first one?
-Krissy Kat |
|
|
![]()
Post
#8
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Aug 2004 Member No: 42,159 ![]() |
QUOTE(Sherry_Vu @ Aug 20 2004, 8:30 PM) actually i see how they did the second one now.. it's part of the "body" section in the css.. use this, just change the width and colors to your liking: CODE <!-- begin code provided by createblog.com --> <style type="text/css"> body { border: 20px solid #FF1493; </style> <!-- end code provided by createblog.com --> and for the first one.. i think you can just use the xanga stylesheet found in the xanga scripts section and set all of the text sections to center thx a lot |
|
|
![]() ![]() |