ReviewBasic - Background and FontsFeb 20, '07 11:30 AM
by XXXX for everyone
Category:Other
The Body Section
How to change my background color?
How to change my background image?
How to change Text Color, Font Size and Font Family?
How to change the links color?

I presume you have already made some change at your profile ,
such as to use a base theme or a custom theme chosen in the page

>Customize your site >Choose a theme http://multiply.com/setup/pages/themes

This is the first change you could try.
The Body section give the general look of your site.
Here you define fundamentally the Background Color, Background Image, the Font Family and Size and the Text Color.
About all the text properties such as color, font family etc. note that it is possible to change those in more detail;
this body section give the general style for the site, but every assignment can be overriden by other more specific assignments.
Here you find some syntax rule to modify the ssignements: tables of the properties equivalences

if you are using the Custom Theme then you have to read this other post.
You can read the other post or you can only to apply the step 0 and then return here and prosecute to read this post.

How to use this code
Just go in
>Customize your site >Custom CSS http://multiply.com/setup/pages/upload-css
if your box is void simply you have to add the code in the custom CSS box and save it
if you find some code in your custom CSS box
(cause you have already made some customization or you are using the Custom Theme and not a base customized theme)
then just search in your custom css box for all the sections:
body {
..........
}

and replace it with the code of the "Main Body" below

/* Main Body*/
body {
background-color: #666666;
background-image: none;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top right;
font-family: "Trebuchet MS", Arial;
font-size: 13px;
color: #FFFFFF;
}

background-color: #FFFFFF; transparent for removing it
background-image: url(bg_URL); none for removing it
background-repeat: no-repeat; repeat or repeat-x or repeat-y or no-repeat
background-attachment: scroll; scroll or fixed
background-position: left top; x (horizontal): left or center or right or x%;
y (vertical): top or center or bottom or y%

This is the code relative to the general links color in your site
This link color can be overridden by other more specific assignments
hover is the color when the mouse is hovering the link;
Normally the Font Family is inerithed by the Main Body section above;
the Font Size is defined by other assignments depending by the kind of link.

/* General Links */
a, a:visited, a:link {
color: #FFFFFF;
}
a:hover {
color: #FF0000;
text-decoration: underline;
}

text-decoration: underline; underline or none or line-through or overline or blink

158 Comments
Comment deleted at the request of the author.
tiyan wrote on Mar 22, '07
i don't get it.
Could U make it more simple?
:D
mariatv wrote on Mar 22, '07, edited on Mar 22, '07
in the custom CSS there is a fundamental section (selector)

the Body selector:

body{
property:value;
......
property:value;
}

mariatv wrote on Mar 22, '07
this section or selector is the more general in the custom CSS
it affect all the site
but you can override this values in specific parts of the site using the other sections you use in the CSS

mariatv wrote on Mar 22, '07
for example your actual body selector is this :
/*custom.css (line 8)*/
body {
background:transparent url(http://img405.imageshack.us/img405/3935/seacalm1300x700zj5.jpg) repeat fixed center;
color:black;
font-family:georgia;
}
/*20.css (line 232)*/
body {
margin:0pt auto;
width:850px;
}
/*52.css (line 1)*/
body {
background-color:#F4F6F8;
font-size:13px;
height:100%;
padding:0pt;
}

mariatv wrote on Mar 22, '07, edited on Mar 22, '07
so your actual body selector in your site is this:

body {
background:transparent url(http://img405.imageshack.us/img405/3935/seacalm1300x700zj5.jpg) repeat fixed center;
color:black;
font-family:georgia;
margin:0pt auto;
width:850px;
font-size:13px;
height:100%;
padding:0pt;
}
mariatv wrote on Mar 22, '07, edited on Mar 22, '07
I can to write this code in this equivalent manner:


body {
background-color:transparent;
background: url(http://img405.imageshack.us/img405/3935/seacalm1300x700zj5.jpg);
background-repeat: repeat;
background-attachment: fixed;
background-position:center;
color:black;
font-family:georgia;
margin:0pt auto;
width:850px;
font-size:13px;
height:100%;
padding:0pt;
}

from here you can to change the properties that you see !





mariatv wrote on Mar 22, '07
in this I maintain only the useful properties to change


body {
background-color:transparent;
background: url(http://img405.imageshack.us/img405/3935/seacalm1300x700zj5.jpg);/*bg image*/
background-repeat: repeat;
background-attachment: fixed;
background-position:center;
color:black; /*text color*/
font-family:georgia;/*font family*/
font-size:13px;/*font size*/
}
mariatv wrote on Mar 22, '07
now ,, sure u have understan nothing ,,,=o)
so
tell me what is that you do not get???
xxxbikeguy wrote on Mar 22, '07
mariatv said
now ,, sure u have understan nothing ,,,=o)
LOL
mariatv wrote on Mar 22, '07
yes I'm a bad teacher
xxxbikeguy wrote on Mar 22, '07
it depends on knowledge of your students
mariatv wrote on Mar 28, '07
tiyan said
i don't get it.
Could U make it more simple?
:D
,.,.,well I have made this more simple :D
aleximathay wrote on Apr 15, '07
what is background- repeat??
mariatv wrote on Apr 15, '07, edited on Apr 16, '07
look this post for view all the possible assignements
http://grouped.multiply.com/reviews/item/1


when you put an image as bg you can define these other assignements:

background repeat if you want the background repeated ..
when the background is made with a little picture repeated ...
for example in the post
http://grouped.multiply.com/photos/album/1
there is a background repeated in both the directions

conversely the bg of this page is set to no-repeat
purpleroyalty wrote on Apr 16, '07
how do you make the boxes transparent???
lfom wrote on Apr 16, '07
Take a look at the main page.. There are many links for tutorials about transparency.
iyamztaipan wrote on Apr 16, '07
getting hot in here??? =D sometimes people who ask doesnt really know how to start or which to start or even what would happen if they start tinkering with the css. please be a bit patient with people like us. maybe we could better help them if when we direct them into a certain page type in the link. so it would be easier for them to locate it.
just a thought. anyway we are helping so lets push it more. =D
lfom wrote on Apr 16, '07
I did it: all the links are listed in the main page. You just need to read it, locate the link and follow it. Too many people simply join a group and ask questions, without reading anything. It's laziness. Many questions are already answered, and Maria did a great job categorizing and listing the tutorials in the main page. ;)
iyamztaipan wrote on Apr 17, '07
ReviewReviewReviewReviewReview
lfom said
I did it: all the links are listed in the main page. You just need to read it, locate the link and follow it. Too many people simply join a group and ask questions, without reading anything. It's laziness. Many questions are already answered, and Maria did a great job categorizing and listing the tutorials in the main page. ;)
simply because they want to learn. they ask because they dont know. even if you present someone with an enumeration of the how to's if they dont know where to start they wouldnt really know where. because for someone the technical terms you guys use are simply all greek to us. you know like "speak in english" you know what i'm sayin.

ya'll did a great job here. and i know that ya'll are not getting paid for it. but not all people are like you or your comrades. that's why your fingers come in different sizes. brains too (i think) are....wejejejjee =D

ya'll are lucky to be very analytical and knowledgeable in all these aspects.

for what you guys do...you should have placed a 10 stars here for me to check it =D
kienamn wrote on Apr 17, '07
they ask because they dont know.
it is not becoz' they dont know, its simply becoz' they are lazy to do a search. its so simple u click "Home" tab and u look for the subject that u want. if there's none then u ask. dont ask question that had been asked b4. it is soooo Simple
iyamztaipan wrote on Apr 17, '07
kienamn said
it is not becoz' they dont know, its simply becoz' they are lazy to do a search. its so simple u click "Home" tab and u look for the subject that u want. if there's none then u ask. dont ask question that had been asked b4. it is soooo Simple
i rest my case. wejejejjee....!!!
loooooooooong thread a bit OT but...still long thread =D
mariatv wrote on Apr 17, '07
sure the first approach to the code is the more traumatic and hard

replying about the question of noreen . purpleroyalty
Luiz said all
she is using avlack .. and it is simple get transparent avlak from the home page of the group
I'm making the main page
for to allow all ppl to find infos without to ask :-)

anyway the hot link is here .
http://grouped.multiply.com/reviews/item/2
for any problem you can to ask

about beginners
there is some post here dedicate to the beginners
I have to point out better those posts in the main page
the concepts to know for a beginner are not much

the technical therms are a necessity
and sure I cannot to explain all the definitions I use in any post ..
cause the posts are enough long to read and to make so :-)

sure they have to get over the initial problem of to approach changing layout

mariatv wrote on Apr 17, '07, edited on Apr 17, '07
for example this is one of the posts for beginners
I have to limitate
the written text for three good cause

it is difficult to me writte cause my bad english

I'm sure the text to read has to be the minimal as possible
to much words do not aid to understand

My time is limitate and life is brief
afterinfo wrote on Apr 19, '07, edited on Apr 19, '07
Plain & simple if a user does not understand any of the above text on this page

Too stop where they are now & read & learn first before going any further.

Cause all the answers on this subject are posted above in the right area's
wishimcarmen wrote on Apr 23, '07
mariatv said
yes I'm a bad teacher
No u didn't Maria...
Coz I learned 'quickly'.. from u he he..
mariatv wrote on Apr 23, '07
lyane wrote on Apr 27, '07
hi, i've been reading your posts and i was just wondering if you could please help me.
i can't seem to change the background image in the other sections of my page (like photos, blog, etc.)
whenever i change the css code, it only changes the look of the home page. but when you click on the other sections, it won't come out, it would still be the same image i used when i first customized my css.
please help me, i've tried everything already but it's still the same.
lfom wrote on Apr 27, '07
If you saved the Custom CSS and it does work in the main page, try force-refreshing the browser or resetting it (empty the cache and delete all cookies). It usually works...
lfom wrote on Apr 27, '07
Oh, I got it... You've used this code somewhere (probably in the Photos section title):

take my photo off the wall if it just won't sing for you < BODY STYLE="background: url(http://i122.photobucket.com/albums/o245/insanely_vain/homepage4.jpg) repeat;">

Just remove the code between < and > and it should be fine...
lyane wrote on Apr 28, '07
ReviewReviewReviewReviewReview
oh wow!!! it worked!!!!! :)
thanks soooo much!!! :))
renzo321 wrote on Apr 28, '07
Hi!! how can I attach music album picture in my home page.
chanshine07 wrote on Apr 30, '07
hi there!:D i tried the code above but still the labels lyk my multiply, my site, post,etc. did not change..help?tnx:D
lfom wrote on Apr 30, '07
Some links are pink and some are white, and you removed the icons, so what's exactly the problem? Maybe you have errors in your Custom CSS, double-check it...
chanshine07 wrote on Apr 30, '07
ok thanks ifom..ur an angel!:P
jaripatah wrote on May 11, '07
Hi, tQ for ur guide...
stylishfaye wrote on May 11, '07
how many pixels for the background again? I read somewhere in here but cant recall
mariatv wrote on May 11, '07, edited on May 11, '07
doesnt exist a rule

just for having a statistical idea of the screen resolution used from the ppl on our PC

10% use 800X600
60% use 1024 X768
28% use 1280X1024
2 % use 1600X1400

so for the banner normally u use a max width of
800 px minus 14 px for the scroll bar = 786px
or
800 px minus 14 px for the scroll bar minus about 155 px for the rail = 630 px



for the background with only one big image without repeat... hmm
it is a problem ..


the rule I think is ..
use any image but you have to shading the image to only one color and you will use that color as background color
as I have made in my site mariatv
otherwise you have to use the bigger size for the image as possible ...( the problem is the KBytes of the image )
optimizing the view for the 1024 X 768 view
(removing the scollbar and the tipical toolbar the real size is 1010 X 580 pixel)
and making the view compatible with 800 X 600 (an acceptable view)
so I have made for this group now ,, I use a 1280 X 1024 ... or something like this ,,, but really not is a good professional solution.

a good solution is an image of 1010 X 580, visible by 800 X 600 monitors, shading the borders to one only color used as background color
stylishfaye wrote on May 11, '07
thanks lady, cant stop asking cause im new to this site....trying to figure out things yet hehe, I wish I have more time...
martipants wrote on May 14, '07
Not helping. :|
martipants wrote on May 14, '07
Never miond I have a layout now. :p
kansville wrote on May 18, '07
hey how do i make my own?? =p
mariatv wrote on May 18, '07, edited on May 18, '07
?
Hi kansville
your actual is this

body {
cursor:url(http://plugin.smileycentral.com/http%253A%252F%252Fplugin%252Esmileycentral%252Ecom%252Fassetserver%252Fcursor%252Ejhtml%253Fcur%253D1%2526i%253D854/image.gif), default;
background:transparent url(http://img263.imageshack.us/img263/5002/zblackthemecu2.jpg) no-repeat fixed center;
font-family:arial;
background-color:#F4F6F8;
color:#000000;
}

a, a:link, a:visited, a:active, a:hover {
cursor:url(http://plugin.smileycentral.com/http%253A%252F%252Fplugin%252Esmileycentral%252Ecom%252Fassetserver%252Fcursor%252Ejhtml%253Fcur%253D1%2526i%253D854/image.gif), default;
}



it is good ...
casey2vii wrote on May 27, '07
help! my CSS codes are all gone! huhuhu. . .is there any way i can retrieve it? i accidentaly chose a theme when i tried to customize my site. . .then it's all gone. . my site now sucks! help please?
mariatv wrote on May 27, '07
if you have only loaded a new customized base theme
>Customize your site >Choose a theme http://multiply.com/setup/pages/themes
but you do not have made changes in your custom CSS box
>Customize your site >Custom CSS http://multiply.com/setup/pages/upload-css
then
THE CSS CODE IS STILL IN THE CUSTOM CSS BOX
so simply
reload your previous customized base theme
go in http://multiply.com/setup/pages/upload-css
you find already yopur code there
simply save it

anyway make a back up of your good css code
if you lost the code .. not is possible find it .. you have to remake all



if you have made a new CUSTOM THEME and not a customized theme then you have lost the css code


mariatv wrote on May 27, '07
uhmmm actually you have the custom theme
so look here
http://multiply.com/setup/pages/themes
.. if you have changed from a customized base theme to the custom theme then you have lost your custom css code
,,
it has been replaced from the code of the custom theme
I'm sorry dear

maricrisdelgado wrote on May 29, '07
Maria, I like your theme here. Can you give me the code? I love to paint. But I'm lousy at the computer. You're great! You're teaching so many people! Thank you!
mariatv wrote on May 29, '07, edited on May 29, '07
hi
do you want to use this theme ?
or
do you want the code for what?
mimiyak14 wrote on Jun 8, '07
help please... i want to put this http://www.flickr.com/photos/unseen-ocean/135418769/ on my background but I cant do it :( thanks
neoc wrote on Jun 8, '07
please help me how I can change my pofile foto..
Thank's
mariatv wrote on Jun 8, '07
help please... i want to put this http://www.flickr.com/photos/unseen-ocean/135418769/ on my background but I cant do it :( thanks
this isn't the URL opf the picture
it is the URL of the web page containing the picture

for to get the picture's URL you have to RIGHT CLICK OVER THE IMAGE and to GET THE PROPERTIES OF THE IMAGE
from there you read the URL - ADDRESS

the URL is

http://farm1.static.flickr.com/52/135418769_e391e16915_o.jpg
mariatv wrote on Jun 8, '07
neoc said
please help me how I can change my pofile foto..
Thank's
profile photo ?
it is the headshot in the rail ?
lapazbatchoy wrote on Jun 12, '07
how can i change the the font size on my guestbook? can i make it bold?
mariatv wrote on Jun 12, '07
the size is here

table {
font-size:12px;
}



it is the size of many objects in the site


you can to overlay it in the guestbook just using the blocks for the replies boxes

so look this post
http://grouped.multiply.com/reviews/item/20

everywhere you see the property
color
in the same block you can plausibly to add any other property relative to the text aspect such as size font family etc ,.,, the bold too

use the property

font-weight:bold;


mariatv wrote on Jun 12, '07
I have always omitted in the posts

table {
font-size:12px;
}


cause it is very extended in the site
it is a my error
mariatv wrote on Jun 12, '07
ahhah of course use the bold where is the size
mariatv wrote on Jun 12, '07
.replybox, .replyboxread, .quotet {
color: #FFFFFF;
font-size: 12px;
font-weight: bold;
font-family: Arial;
/* any other property 'bout the text in the replies */
}

lapazbatchoy wrote on Jun 13, '07
thanks!
dbee19 wrote on Jun 13, '07
thanks mariatv for help me... i like u... b my friend ok...
akuji wrote on Jun 23, '07
Hm.. its helpful. Great Job!~
asshoole wrote on Jun 26, '07
Very helpful, indeed. :> Thanks Maria. (:
roby1234 wrote on Jul 6, '07
i prefer to use MarkyTrigger generator ^__^ peace
qalaroo7 wrote on Jul 8, '07
oh thanks , it's so clear to me ^__^

actually with the background and the banner , it's clear so far

but i wanna change the background of the boxes or i want to use a picture instead of using one color ... is that possible ?

if yes ..... how ?



mariatv wrote on Jul 8, '07, edited on Sep 7, '07
ehhehe I feel you have skyline theme totlaly overlayed by avlack theme
its strange ,,,
anyway you have to use the code for the avlack theme

just copy this code and paste it at the bottom of your custom css


/*NAVIGATION BAR*/
div#subnavc {
background-color:transparent;
border-top:6px none #FFFFFF;
}
/* Content - Item Box */
div#page_start {
border-color:#FFFFFF;
border-style:none;
}
td#maincontent {
background-color:transparent;
}
.itembox {
background:transparent none repeat scroll 0%;
border-color:#C7DC4E;
border-style:none;
color:#ffffff;
}
/*title box*/
.itemboxsub {
color:#ffffff;
}
/*Post Date (inside title boxez)*/
.itemsubsub {
color:#ffffff;
}
/*Post Date (inside boxez)*/
.posteddate {
color:#ffffff;
}
/*RIGHT RAIL*/
td.rail {
background-color:transparent;
}
.railstart {
background:transparent none no-repeat scroll -30px 0pt;
}
.railbody {
background:transparent none repeat scroll 0%;
border:none;
}
.railend {
background:transparent none repeat scroll 0%;
}
.railsep {
background:transparent none repeat scroll 0%;
}
/*FOOTER*/
div#ownedfooter {
background-color:transparent;
border-color:#999999;
border-style:none;
color:#ffffff;
}



the complete code for avlack is here
http://grouped.multiply.com/reviews/item/2
you find other things too
as viewing history or reply boxes


to change the boxes from transparency to a background image
you have to add the background image changing
none
with
url(image_URL)
in the lines
background:transparent none repeat scroll 0%;
or adding
background-image: url(image_URL);
where you see
background.color: transparent;

but for avlack it is a bit complex to add a whole background
cause as u see it is composed by many little parts ..
avlack is as a puzzle

mmmh the blue vertical line ( of skyline theme ! ) is here
td.rail {
border-left:1px solid #9999FF;
}

you remove it changing solid with none
qalaroo7 wrote on Jul 8, '07
ummm ,

i saw u in ma multiply , do u like it , it's the first one ^__^

& thnx for the code i'll try it soooon

see ya
qalaroo7 wrote on Jul 8, '07
one more ,


i put tracks on my welcoming blog , but it's doesn't play

i don't know why >>>!!
mariatv wrote on Jul 8, '07, edited on Jul 8, '07
what page is the welcoming blog?
is it the welcome box in the main page?


track .. is a stats counter ?
qalaroo7 wrote on Jul 8, '07
yes the welcome box

tracks >>> music


:(
mariatv wrote on Jul 8, '07
I can hear the music in your site
mariatv wrote on Jul 8, '07, edited on Jul 8, '07
any visitor have to be logged in Multiply to hear the music
qalaroo7 wrote on Jul 8, '07
at the main page ??

or u go to music ....??
mariatv wrote on Jul 8, '07
at the main page
mariatv wrote on Jul 8, '07
in the music foder it depend by the setting you choose for every post ..
if it is public it is visible by any visitor also if not logged in MP
for the player in the main page you have to use files posted for everyone and it is visible only if you are logged in
Comment deleted at the request of the author.
qalaroo7 wrote on Jul 8, '07
thanks aloooooooooooooooot mariatv

:)
maymarie09 wrote on Jul 11, '07
i'm trying to get this image as my background.. i keep trying but it doesn't show.. can you help me out with the codes? the image site is...
http://img502.imageshack.us/my.php?image=unicornfantasypm5.jpg
thanks
mariatv wrote on Jul 11, '07
hi
you have to get the right URL

this is the URL of the page HTML page containing your picture
http://img502.imageshack.us/my.php?image=unicornfantasypm5.jpg
to try it just cliclk the link and look what appear


to get the URL of the picture
you have to right click the picture
get the properties
in the little window popup that will appears
copy the address URL of the image

so the URL of your picture is
http://img502.imageshack.us/img502/8941/unicornfantasypm5.jpg

click the link to verify this
you see the difference


if you do not have the link in a web page
just paste the URL in the address bar of the browser and go to the address
you have to see the picture
and ONLY the picture ,, not other objects.
wholesalersdepot wrote on Jul 17, '07
hey help me!i do not want to repeat my background pic so changed repeat to no-repeat and my pic is at the center and very small.
i want to enlarge my pic that will cover my screen
please help me
thank u
mariatv wrote on Jul 17, '07
with css you cant resize a pic
you have to make a new pic
just upload a bigger pic and use it
rowrence wrote on Jul 18, '07
hmmm...can you suggest a pic size that will fit exactly at the computer screen?thank you very much
hazeljonalene wrote on Jul 20, '07
well tnx for the help....
wendyweh wrote on Jul 29, '07, edited on Jul 29, '07
maria, pls help me again. i want to change the font of my whole profile to tahoma[whether it's a link or what]. i couldn't see the codes that will only change the font.. and one more, how can i change the text color in the part where you will write your replies or the form only? pls. help me. much appreciation for your help again. thanx in advance. =]
mariatv wrote on Jul 29, '07, edited on Jul 29, '07
for the second

textarea#body {
background:transparent none;
color:red;
font-family:thaoma;
}


ahahhah h from where u have got
div#itemreplyform {
opacity:0.7;
}

its good
it s a new id in the code to select only the whole box where to write the replies


mariatv wrote on Jul 29, '07
for the first question
look at your code ,,
every where you see

,,,,,{
.........
font-family: something;
.........
}


replace that with


font-family:thaoma;

every where you see

,,,,,,,,,, {
.........
color:#something;
.........
}

just add a new line


,,,,,,,,,, {
.........
color:#something;
font-family:thaoma;
.........
}


when u have made this
ask me for the other text you have to change yet



wendyweh wrote on Aug 1, '07
mariatv said
for the second

textarea#body {
background:transparent none;
color:red;
font-family:thaoma;
}


ahahhah h from where u have got
div#itemreplyform {
opacity:0.7;
}

its good
it s a new id in the code to select only the whole box where to write the replies


thanks for having time on me. it's fine, i have experimented a code i see in common for text colors and tried too add it up. well, still, thanx. without your help, my site would be nothing.[=
smaz2k wrote on Aug 3, '07
I'm using the avlack theme. How do I change the background colour or image to textbox. Originally it was white. Pls HELP!!!!
teachertine wrote on Aug 5, '07
this was very helpful. thanks.
lierrabonsai wrote on Aug 11, '07
pls can u make me a thme on my site like my pic at the top,,,and pls the color of my theme is very gurly but pink n black like
clarissecute wrote on Aug 17, '07
i don't know how.. its hard
Comment deleted at the request of the author.
dragell wrote on Aug 24, '07
maria????
can you make westlife layout???you know westlife is???iris boyband....
dhessofrin wrote on Aug 25, '07
hi..my layout is a mess. having a hard time affixing for the right font size, pixels.
Please help me.
mariatv wrote on Aug 27, '07
it's hard to me to make some original layout ,, I'm not so creative and not so good with photoshop
its more simple to me to find the arid code :-)
mariatv wrote on Aug 27, '07
hi..my layout is a mess. having a hard time affixing for the right font size, pixels.
hi
your layout looks as the standard skyline indeed ..


the font size is reguled in many places in the code

just look at the post I made on skyline (search it from the home page of the group)
and look for all the lines
font-size:12px
(the code 12px is an example)

so u have to change the size for the text from there

more in any block u see
color:#123456;
you can tyo add in the block a NEW line such as
font-size:14px;

to change the size in that block overridding the inherited size from another block

arefsantoso wrote on Aug 29, '07
mariatv said
for the second

textarea#body {
background:transparent none;
color:red;
font-family:thaoma;
}


ahahhah h from where u have got
div#itemreplyform {
opacity:0.7;
}

its good
it s a new id in the code to select only the whole box where to write the replies



thanks for having time on me. it's fin
shella26 wrote on Aug 29, '07
huh....i dont get it!.....
mariatv wrote on Aug 30, '07
whats the problem Shella?
nindhisya wrote on Sep 5, '07
i'm trying to change my background image.. but it doesn't work! hikss...
mariatv wrote on Sep 5, '07
normally it happens cause of a wrong URL

leave the new background in
so will be possible to find the problem

pareh wrote on Sep 7, '07
mariatv said
ehhehe I feel you have skyline theme totlaly overlayed by avlack theme
its strange ,,,
anyway you have to use the code for the avlack theme

just copy this code and paste it at the bottom of your custom css


/*NAVIGATION BAR*/
div#subnavc {
background-color:transparent;
border-top:6px none #FFFFFF;
}
/* Content - Item Box */
div#page_start {
border-color:#FFFFFF;
border-style:none;
}
td#maincontent {
background-color:transparent;
}
.itembox {
background:transparent none repeat scroll 0%;
border-color:#C7DC4E;
border-style:none;
color:#ffffff;
}
/*title box*/
.itemboxsub {
color:#ffffff;
}
/*Post Date (inside title boxez)*/
.itemsubsub {
color:#ffffff;
}
/*Post Date (inside boxez)*/
.posteddate {
color:#ffffff;
}
/*RIGHT RAIL*/
td.rail {
background-color:transparent;
}
.railstart {
background:transparent none no-repeat scroll -30px 0pt;
}
.railbody {
background:transparent none repeat scroll 0%;
border:none;
}
.railend {
background:transparent none repeat scroll 0%;
}
.railsep {
background:transparent none repeat scroll 0%;
}
/*FOOTER*/
div#ownedfooter {
background-color:transparent;
border-color:#999999;
border-style:none;
color:#ffffff;
}

<