Group's posts with tag: base themes
Now that we have a new base theme, and no one has tackled all of the ins and outs of customizing this base theme, perhaps a Design challenge would be in order. Not because we are looking for customized themes here (we aren't) but we are looking for any information about this new theme that would help everyone else.
Designing this new base theme will reveal more information about it. So anyone interested in doing so, feel free to post a link in this thread to your creation along with any insights and challenges you find with customizing this theme!
There's no time limit, and no prize and no winner. lol Just let us know what you did or needed to do to make what you already know work for this base theme!
HERE is the theme's appearance with it's Base CSS.

|  | OK...Linda made a comment about all the Custom CSS for the Skyline theme being able to interchange with the Black Lily. It does, to a point. The first option I tried, after placing my kinda sorta basic customised Skyline CSS into the Black Lily, was the "wide open illusion" horizontal and vertical navigation bars. They didn't fair so well!
Sooo...off I went to the drawing board! Here's the Black Lily base code for the Owner Nav bar, along with the area for the page "title"...both of which are involved to work this out...
/*Black Lily owner nav bar - base code*/ div.owner_nav { padding: 0; height: 210px; background: url(http://images.multiply.com/multiply/style/blacklily/ownernav_bg.jpg) no-repeat top left; } div#subnavc { margin-left: 120px; background-color: #454; background: none; width: auto; border: none; } div#subnav { width: auto; padding: 0; margin: 0; height: auto; background: none; }
a.topt, a:visited.topt { line-height: 1.2em; display: block; float: left; height: auto; text-align: center; background: none; font-size: 11px; color: #fa0; width: 68px; height: 19px; font-weight: bold; padding: 0; padding-top: 10px; background: url(http://images.multiply.com/multiply/style/blacklily/lvl2nav_tab.jpg); } a.toptsel, a:visited.toptsel { line-height: 1.2em; display: block; float: left; height: auto; text-align: center; background: none; font-size: 11px; color: #fff; padding: 0; padding-top: 10px; width: 68px; height: 19px; font-weight: bold; background: url(http://images.multiply.com/multiply/style/blacklily/lvl2nav_tab.jpg); }
/*Black Lily "page title" - base code*/ h1#page_owner_title { padding: 90px 0 0 130px; background-color: #ddd; background-color: #ecf2f9; background-color: #456; background-color: none; background-color: transparent; color: #c00; background-color: #456; border: none; background: none; font-size: 40px; font-weight: normal; font-family: serif; height: 57px; }
...which, with the rest of the base code, gives you a page as shown by "Image 1" below...
First order of business was to implant an image as the background which involved these two areas in order to have a "transparent" effect for the area above the main body of the theme...
body { background: url(IMAGE URL); background-attachment: fixed; background-repeat: no-repeat; background-position: center; }
/*b/g for MP logo and gnav (Inbox - Groups)*/ table.globalnav { background: none; background-color: transparent; }
With the following modified "nav bar" and "title" CSS...
/*Owner Nav Bar (HORIZONTAL)*/ div.owner_nav { padding: 0; /*moves title AND nav bar relative to gnav*/ padding-top: 40px; /*moves nav bar down relative to title*/ padding-bottom: 250px; height: 210px; background: none; background-color: transparent; } div#subnavc { /*chg (-) to move nav bar left*/ margin-left: 30px; background: none; background-color: transparent; width: auto; border: none; } div#subnav { width: auto; padding: 0; margin: 0; height: auto; background: none; background-color: transparent; }
/*nav buttons - not "In Use" or hover*/ a.topt, a:visited.topt { line-height: 1.2em; display: block; float: left; height: auto; text-align: left; background: none; font-size: 18px; color: #ECE5B6; font-style: oblique; font-weight: bold; font-family: Trebuchet MS, Helvetica, sans-serif; width: 90px; height: 19px; padding: 0; padding-top: 10px; background: none; background-color: transparent; } /*hover on all - not "In Use"*/ a.topt:hover, a:visited.topt:hover { color: #fff; }
/*"In Use" tab - not hover*/ a.toptsel, a:visited.toptsel { line-height: 1.2em; display: block; float: left; height: auto; text-align: left; background: none; font-size: 18px; color: #fff; font-style: oblique; font-weight: bold; font-family: Trebuchet MS, Helvetica, sans-serif; /*"blink" works in FF only*/ text-decoration: blink; padding: 0; padding-top: 10px; width: 90px; height: 19px; background: none; background-color: transparent; } /*"In Use" tab - hover*/ a.toptsel:hover, a:visited.toptsel:hover { color: #fff; } /*End of HORIZONTAL owner nav bar CSS*/
/*TITLE area adjustments for Horizontal nav bar*/ h1#page_owner_title { padding: 0; /*moves nav down - must establish div.owner_nav { padding-bottom } FIRST!*/ padding-bottom: 350px; /*pushes (+) title to right - to line up with body&navbar*/ padding-left: 20px; background: none; background-color: transparent; border: none; color: #ECE5B6; font-size: 22px; font-weight: bold; font-style: oblique; font-family: Trebuchet MS, Helvetica, sans-serif; height: 57px; }
...you get the effect, as displayed in "Image 2" (IE7) and "Image 3" (FF).
With the following modified "nav bar" and "title" CSS...
/*Owner Nav Bar (VERTICAL)*/ div.owner_nav { width: auto; padding: 0px; /*moves (+) title AND nav bar relative to gnav*/ padding-top: 25px; /*moves (+) nav bar down relative to title*/ padding-bottom: 285px; background: none; }
div#subnavc { /*adj (-) to bring nav bar left*/ margin-left: 35px; background: none; width: 110px; border: none; /*chg (+) nav bar relative to title*/ padding-top: 20px; position: absolute; } div#subnav { padding-left: 8px; background: none; border: none; height: 20px; } /*nav buttons - not "In Use" or hover*/ a.topt, a:visited.topt { line-height: 2.4em; display: block; float: left; width: 110px; /*spacing between tabs*/ height: 40px; text-align: left; font-size: 18px; color: #ECE5B6; font-style: oblique; font-weight: bold; font-family: Trebuchet MS, Helvetica, sans-serif; padding: 0px; margin: 0px; background: none; background: url(); background-repeat: no-repeat; background-position: center; border: none; } /*hover on all - not "In Use"*/ a.topt:hover, a:visited.topt:hover { color: #fff; } /*"In Use" tab - not hover*/ a.toptsel, a:visited.toptsel { line-height: 2.4em; display: block; float: left; width: 110px; /*space below "In Use" tab*/ height: 40px; text-align: left; font-size: 18px; color: #fff; font-style: oblique; font-weight: bold; font-family: Trebuchet MS, Helvetica, sans-serif; padding: 0px; margin: 0px; background: none; background: url(); background-repeat: no-repeat; background-position: center; border: none; /*to add blinking (FF) "In Use" tab on nav bar*/ text-decoration: blink; } /*"In Use" tab - hover*/ a.toptsel:hover, a:visited.toptsel:hover { color: #fff; } /*End of VERTICAL owner nav bar CSS*/ /*TITLE area adjustments for Vertical nav bar*/ h1#page_owner_title { background-color: transparent; /*pushes (+) "title" to rt - to line up with body&navbar*/ padding-left: 40px; /*will push title & nav bar down - more space between gnav, less space between Welcome box*/ padding-top: 20px; color: #ECE5B6; font-size: 22px; font-weight: bold; font-style: oblique; font-family: Trebuchet MS, Helvetica, sans-serif; height: 57px; }
...you get the effect, as displayed in "Image 4" (IE7) and "Image 5" (FF).
I inserted /* notes */ in appropriate areas of the codes with an explanation regarding the relevancy of changes in each area to give you latitude for personal tweaking...Hopefully, they are understandable by all!
A final note regarding these codes and the CSS Validator: Tho the /* notes */ within the brackets (ie; { } ) are strategically placed for your reference and guidance in the event you want/need to tweak them for your personal preference, I do not advise pasting any /* notes */ contained by the brackets (ie; { } ) in with your Custom CSS as they may cause problems for you when you validate your CSS such as coming up with a misplaced semi-colon. Save yourself the frustration...lol
I want to take this opportunity to thank Linda (Dantcer), for the image that seemed so fitting as it went with the original colors of the Black Lily theme...Thank You, Linda!
Happy trails....
UPDATE: As of the "upgrade", mid June 2008, you MUST remove all /* notes */ within the brackets, ie { } , so the validator doesn't strip the height and width from the Custom CSS!
|
Those who use custom themes based on Clean or Andros themes (or even the Custom Colors theme) probably already noticed that the top navigation menu, also called Global Nav menu, where the links Inbox, My Site, Contacts and Groups can be found now have a gray background like the one in the picture on the side. This happened because the base themes were updated, adding some new codes and small changes.
To fix it and make them transparent again, add this to the end of your Custom CSS:
div.header td.firstnav li.gnopt, div.header td.firstnav li.gnoptsel { background: transparent none; border: none; }
If you also want to make them all in the same 'level', also add this block:
div.header td.firstnav li.gnoptsel { margin: 5px 1px 1px 0; padding: 4px 10px; }
That's it! 
With my wanting to open up the space between my page title and the navigation bar, I was running into problems...Then along came Dantcer with a similar situation ( "Nav Bar Issue with IE"). Tho her resolve was different than my objective, the process she ended up using satisfied me, giving me the illusion I wanted. Hadn't really thought about it much except that many questions regarding "How to make a banner?" have been asked recently...soooo, here goes. Please take into consideration that this theme is Skyline, and it is the only theme I've worked with. I can only give you legitimate findings in this realm, but it may give you an idea of what you may be able to do with other themes. This all came about as the result of many "trials & errors"...I shouldn't be the only one...lol This is the base CSS pertaining to the positioning of the "owner navigation bar" of the Skyline theme:
div.owner_nav { border: none; margin: 0; height: 163px; } div#subnavc { width: auto; } div#subnav { padding: 1px; padding-left: 5px; background: none; background-color: #000; border: none; border-top: 1px solid #99f; border-bottom: 1px solid #99f; height: auto; } To give you an idea of the dimensional difference, this is the top portion of the Skyline theme with that CSS... Working with the height and padding of the div.owner_nav portion, and adjusting the padding-top of div#subnav to coordinate those efforts...
/*Navigation bar*/ div.owner_nav { border: none; margin: auto; height: 260px; width: auto; padding: 25px 0px 285px 0px; background: none; } /*owner nav bar - BG & border*/ div#subnav { padding: 1px; padding-left: 30px; padding-top: 310px; background: none; border: none; height: auto; width: auto; }
"Pushing" the page title a little, if you want it aligned to the left as I do...aligning it with the "Home" tab, placing it more within the body of your page as you scroll down, is accomplished here:
h1#page_owner_title { padding-left: 25px; }
This is what I came up with...
JFYI: The image I am using is 750x562px...
body { background-color: #000000; /* GTO - image from http://www.gtoforum.com/photopost/showphoto.php/photo/454/limit/views */ background-image:url(IMAGE URL); background-attachment: scroll; background-position: top center; background-repeat: no-repeat; width: auto; } You also realize that you have options at this point...ie:
background-attachment: fixed;
background-position: center;
Another feature that can be used with this rendition is the vertical navigation bar...Thanks go to Denim, my friend, who passed this concept on to me...and which I modified to fit the illusion I wanted:
/*Navigation bar*/ div.owner_nav { border: none; margin: auto; height: 260px; width: auto; padding: 25px 0px 285px 0px; background: none; } /*Vertical Nav bar CSS from Denim - modified*/ div#subnavc { background: none; width: 110px; border: none; /*moved bar down fr title - and to rt*/ padding-top: 60px; padding-left: 35px; margin: 0px; position: absolute; } div#subnav { padding: 0px; padding-left: 8px; margin: 0px; background: none; border: none; height: 25px; } /*nav buttons - not "In Use" or hover*/ a.topt, a:visited.topt { line-height: 2.4em; display: block; float: left; width: 110px; /*spacing between tabs*/ height: 40px; text-align: left; font-family: comic sans-serif; font-weight: bold; font-size: 18px; font-style: oblique; color: #ECE5B6; padding: 0px; margin: 0px; background: none; /*background: url(URL) no-repeat center;*/ border: none; } /*hover on all - not "In Use"*/ a.topt:hover, a:visited.topt:hover { line-height: 2.4em; display: block; float: left; text-align: left; font-family: Arial; font-weight: bold; font-size: 18px; color: #fff; padding: 0px; margin: 0px; background: none; /*background: url(URL) no-repeat center;*/ border: none; } /*"In Use" tab - not hover*/ a.toptsel, a:visited.toptsel { line-height: 2.4em; display: block; float: left; width: 110px; /*space below "In Use" tab*/ height: 40px; text-align: left; font-family: comic sans-serif; font-style: oblique; font-weight: bold; font-size: 18px; color: #ECE5B6; padding: 0px; margin: 0px; background: none; /*background: url(URL); no-repeat center;*/ border: none; /*to add blinking (FF) "In Use" tab on nav bar*/ text-decoration: blink; } /*"In Use" tab - hover*/ a.toptsel:hover, a:visited.toptsel:hover { line-height: 2.4em; display: block; float: left; text-align: left; font-family: Arial; font-weight: bold; font-size: 20px; color: #fff; padding: 0px; margin: 0px; background: none; /*background: url(URL) no-repeat center;*/ border: none; } /*end of modified vertical CSS*/
This is what I came up with...
 UPDATE: As of the "upgrade", mid June 2008, you MUST remove all /* notes */ within the brackets, ie { } , so the height and width don't get "stripped" from the Custom CSS!
Link: http://missthemed.multiply.com/photos/album/145/An_All_Base_Theme_Code...Apart from other strange things today (don't ask it was weird) I've been doing this Its a CSS code that will work on 13 base themes possibly more I didn't try all of them Did try it out on Dance With Me - Sandskrit - Japanese Minimalist - Skyline - Black Lilly - Outburst- Avlack - Retro - Melon -Myknos - Newspaper - Blue Slate - Classic Same code different base its basically a base default CSS code no padding, no margins, the code looks strange but it does work at least I hope so anyway I know you will tell me if it doesn't Tell me what you think about it and I don't mean the color either I mean the coding
I was wondering why a lot of theme designers don't make themes on Black Lilly, Outburst and Petals and you know I came to the conculusion its the footer credits Well they can disapear easy enough
The footer credit on Outburst says "Template design - Copyright © 2005 Chris Vincent All rights reserved." Now I checked the link it doesn't work any more and really you've designed the theme you've made so why have it there right It looks like this on default

There is a way of getting rid of it like this

Can you see what I've done? I made the Multiply links a grey color and made my footer the same grey color , made the line height a bit more so they were further apart and **pooof** gone , the line of text is still there but it just can't be seen my footer is 100px by 760px the grey part #ACACAC Links and font color on footer #ACACACHere is the adjusted code ..change too same colors as your footerdiv#ownedfooter { margin: 0 auto; line-height: 2em; padding-top: 1px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; width: 756px; border: 5px solid #E4E3E3; border-top: none; font-size: 10px; color: #ACACAC; background-color: #eeeeee; height:110px; text-align: bottom center; background:url(image link goes here)no-repeat center; } div#ownedfooter a{color: #ACACAC;font-size: 10px;text-align: bottom center;} div#ownedfooter a, div#ownedfooter a:visited, div#ownedfooter a:link{ color:#ACACAC;} So there you go now you have no reason not to design a theme on Black Lilly, Petals, Outburst or any other theme base with that line of text on the footerNote: this obviously does not work if your footer has transparency and no you can't put your own name there either that "template design by" is hard coded into the HTML..hiding it is the easiest way.
 For sure it's the most asked question, besides transparency (well, at least before Custom Color and Whiteout appear), so it's a quick answer:
1. You don't need to use CSS if you just want to add an image to your Header, simply use plain HTML to add an image in your Page Title. For more info, take a look at these tutorials about editing the Page Title and using images inside Multiply:
2. If you want more control and flexibility, and be able to change other theme images as well, simply look for the image you want to change in the CSS. In this post you can find all the CSS for the base themes:
with a plus that the images URL are links so you just have to click on them to see what image it is. Then you copy that block to your Custom CSS and change the image URL to the one that points to the image you want to use instead.
Didn't get it? Let's look at an example. One of the most popular themes is Avlack because it has a very simple layout so it's easy to find what you want to change. Its CSS is here:
and you can see that its header is set in this block: div.owner_nav { border: none; margin: 0 auto; margin-top: 20px; height: 310px; height: 130px; width: 760px; border: 10px solid #fff; border-bottom: none; padding: 113px 0 0 0; background: url(http://images.multiply.com/multiply/style/avlack/top.png) no-repeat top left; background-color: #fff; background-position: 0 -10px; }
You can then copy it to the end of your Custom CSS (or edit the block if you are doing a full theme customization as explained here) and change the image URL, something like this:
div.owner_nav { border: none; margin: 0 auto; margin-top: 20px; height: 310px; height: 130px; width: 760px; border: 10px solid #fff; border-bottom: none; padding: 113px 0 0 0; background: url(IMAGE_URL) no-repeat top left; background-color: #fff; background-position: 0 -10px; }
Actually the only code you need is the one that sets the background image, so you can use just this: div.owner_nav { background: url(IMAGE_URL) no-repeat top left; }
If you need to change other parameters, simply add them to the CSS block, like this: div.owner_nav { background: url(IMAGE_URL) repeat-x top left; background-color: #000; background-position: 0 0; }
For info about hosting images on Multiply and hot-linking them, see:
and for generic CSS/background tips:
Always remember that every CSS block (selector) must have a starting "{" and a closing "}". Always double-check for errors.
Have fun! 
Attachment: phpinfo.php
Link: http://missthemed.multiply.com/photos/album/48/The_Lens_Flare_project_...Every base theme done in the same way they will all look the same ..well as same as I can get them This link up there ^^ is part 1 part 2 is here The Lens Flare Project part 2And yes I am quite mad so far I've done Avlack, Sandskrit , Retro, Melon ,Skyline ,Black Lilly, Newspaper, Blue Slate and Andros (in CSS) via Custom Colors. Still working on Blocks , Base Camp , Myknos, Oasis and Clean Why? Because I can and to see if it can be done...its an interesting experiment anyway
I thought this would be a good "discussion" topic because everyone has to start with one before customization begins. And for new users not yet settled in on one yet, this might give some insight as to why certain base themes are chosen to work with. (Pros & Cons). Also, theme designers or those testing and working with different base themes will probably have much more to comment on about the different choices.
I personally chose the Skyline Theme because I wanted a wide width theme, after looking at all of them. I thought that all of that wasted space on the fixed width themes was just that. So I liked the wider look.
I liked that I could use the content boxes both "one under another" as well as "side by side", or in combination. I also originally liked the darker look, because I like the "POP" factor of darker themes (and have since stayed with the darker backgrounds when customizing).
And I've recently found out that I like that the code I use for transparency for the Calendar WORKS. (And doesn't seem to work well in other fixed width themes). Seems that a lot of code works easier with this theme.
I really don't have any issues with this base theme at all.
So what made YOU choose the base theme you started with and/or are using now? What do you like about it, and what do you think might be a customization weakness with it? Those that test and customize different base themes, what are your opinions on one or several?
To get a closer look at each base theme without changing yet, CLICK HERE , and then click on each image. The CSS that each uses now is included.
 In this series I will try to explain the CSS basics. It's hard to discuss all the properties and options in just one tutorial, so I will add more posts eventually. Make sure you also check out CSS Logics and Multiply Design 101 in the group for additional info. Let's start with the box model. CSS uses a very simple box model when you can control the dimensions, padding, border and margin. From the W3.org website: Each box has a content area (e.g., text, an image, etc.) and optional surrounding padding, border, and margin areas; the size of each area is specified by properties defined below. The following diagram shows how these areas relate and the terminology used to refer to pieces of margin, border, and padding: The margin, border, and padding can be broken down into top, right, bottom, and left segments (e.g., in the diagram, "LM" for left margin, "RP" for right padding, "TB" for top border, etc.).
The perimeter of each of the four areas (content, padding, border, and margin) is called an "edge", so each box has four edges: - content edge or inner edge
- The content edge surrounds the rectangle given by the width and height of the box, which often depend on the element's rendered content. The four content edges define the box's content box.
- padding edge
- The padding edge surrounds the box padding. If the padding has 0 width, the padding edge is the same as the content edge. The four padding edges define the box's padding box.
- border edge
- The border edge surrounds the box's border. If the border has 0 width, the border edge is the same as the padding edge. The four border edges define the box's border box.
- margin edge or outer edge
- The margin edge surrounds the box margin. If the margin has 0 width, the margin edge is the same as the border edge. The four margin edges define the box's margin box.
Each edge may be broken down into a top, right, bottom, and left edge. The dimensions of the content area of a box — the content width and content height — depend on several factors: whether the element generating the box has the 'width' or 'height' property set, whether the box contains text or other boxes, whether the box is a table, etc. Box widths and heights are discussed in the chapter on visual formatting model details. The background style of the content, padding, and border areas of a box is specified by the 'background' property of the generating element. Margin backgrounds are always transparent.
So basically each selector used in the CSS code refers to a box on your page. Boxes can be put one over the another, moved and so on. Besides it's dimensions, you can also change its position, either relative to other boxes or make it absolute so you can position it using X (horizontal) and Y (vertical) coordinates like the ones you use in a Mathematics graph. Below are the most common %elements used in boxes and possibles values (you can search on the internet for more info using something like 'css background' etc): dimensionsTo configure a box size, you can use numerical values (100px, 480px, etc), auto or percentage values with: - height: Sets the height - line-height: Sets the distance between lines - max-height: Sets the maximum height - max-width: Sets the maximum width - min-height: Sets the minimum height - min-width: Sets the minimum width - width: Sets the width of an element Example (sets the height of the box that contains the Page Title and nav menu) div.owner_nav {height: 199px;background: none;}displayThe values of this property have the following meanings: - block: This value causes an element to generate a block box. - inline: This value causes an element to generate one or more inline boxes. - none: This value causes an element to generate no boxes in the formatting structure (i.e., the element has no effect on layout and it's not displayed at all). Example (hides the icons in the top nav bar/header): li.gnopt a img, li.gnoptsel a img { display: none; }visibilityThe 'visibility' property specifies whether the boxes generated by an element are rendered. Invisible boxes still affect layout (set the 'display' property to 'none' to suppress box generation altogether). Values have the following meanings: - visible: The generated box is visible. - hidden: The generated box is invisible (fully transparent, nothing is drawn), but still affects layout. Furthermore, descendents of the element will be visible if they have 'visibility: visible'. overflowControls how the content that does not fit the box dimensions will be handled. You can use: - visible: Default. The content is not clipped. It renders outside the element - hidden: The content is clipped, but the browser does not display a scroll-bar to see the rest of the content - scroll: The content is clipped, but the browser displays a scroll-bar to see the rest of the content - auto: If the content is clipped, the browser should display a scroll-bar to see the rest of the content Example (add scrollboxes to replies when they contain long text lines or images): .reply {overflow: auto;}position- static: Default. An element with position: static always has the position the normal flow of the page gives it (a static element ignores any top, bottom, left, or right declarations); - relative: An element with position: relative moves an element relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position; - absolute: An element with position: absolute is positioned at the specified coordinates relative to its containing block. The element's position is specified with the "left", "top", "right", and "bottom" properties; - fixed: An element with position: fixed is positioned at the specified coordinates relative to the browser window. The element's position is specified with the "left", "top", "right", and "bottom" properties. The element remains at that position regardless of scrolling. Example (position the Page Title): h1#page_owner_title { position:absolute; left:100px; top:150px; }colorThe foreground color, mostly for text. You can use a value like #FFF or #C0C0C0 or a name like red or transparent. Example (color for the main text on your page): body {color: black;}backgroundThe background color and/or image. Example (general page background): body {background: white url(http://images.multiply.com/multiply/logo/logo-on-letters-70.png);}You can set the image and color separately, like this (in this case the order does not matter): body { background-image: url(http://images.multiply.com/multiply/logo/logo-on-letters-70.png);background-color: white; }Remember that if you use the same statement only the last one will be used, so this will make your background be only blue (no image): body { background: url(http://images.multiply.com/multiply/logo/logo-on-letters-70.png); background: darkblue; }For the background image, you can also use some other properties: - background-attachmentvalues: fixed or scroll- background-positionvalues: top, bottom, right, left, center or value - background-repeatvalues: no-repeat, repeat, repeat-x, repeat-y You can also combine them in just one line, like this: background: darkblue url(Image_URL) fixed no-repeat center;borderSets the color, type and thickness of the border ( click here for a tutorial in the group). Example (sets the rail border): .rail {border: 2px solid black;}margin and paddingThe margin and the padding values can be set in just one line in the order "top right bottom left", one value for all the dimensions or separated in different lines. For example: padding: 10px 5pix 12px 0px;is the same as: padding-top: 10px;padding-right: 5px;margin-bottom: 12px;margin-left: 0px;As you may already know, you can also do the same to change the border for just one part of the box (put a border bellow the titles on your main page): .itemboxsub { border-bottom: 2px dotted #fff; } If you want to suppress an %element, you can use: - transparent for the color. Example (content boxes on the main page with no background): .itembox {background: transparent;}- none when you may have multiple parameters, like 'background-image' or 'border'. Example (no border and no background image in the rail): .rail {background: none;border: none;}- 0 when you have values, like 'padding' and 'margin'. Example (no margin for the itemboxes): .itembox {margin: 0;} To remove the background completely (make it totally transparent), you can use: background-color: transparent;background-image: none;or: background: transparent none; For a quick reference about the most used commands, see this page at w3schools.com. Every CSS block (selector) must have a starting "{" and a closing "}". Always double-check for errors.

|  | 

foonasty wrote on Nov 24, '05
A = 12 (site title font) B = 2 (navigation bar background ... this element may also have a border, defined by 3, navigation bar border) C = 4 (navigation bar links. when selected, the links take on the colors defined by 5,6,7) D = 1 (body background) E = 13 (page title font ... I assume E is meant to designate 'Home')
Every box on a multiply page after the navigation and title are considered "items", so
F = 14 (item title box background) G = 16 (item box contents font) H = 17 (item box contents background) I = 8 (links) J = 15 (item box title font) K = 14 (item title box background) L = 15 (item box title font) M = 17 (item box contents background) N = 16 (item box contents font) O = 9 (right rail font) Q = 11 (right rail background) R = 10 (right rail links) S = multiply automatically formats this to try to fit your color scheme, but still have the ads viewable T,U = multiply controls these V = see 'I' W = see 'M' X = see 'N' Y = see 'K' and/or 'L' Z = see 'B'
|
 OK, now you already know a bit of CSS and want to create your own theme... So what are the basic steps? Actually you do not create anything from zero (OK, you are really good you can do it), but you modify one of the base themes. It's much easier and that's how all the theme designers start. These are the basic steps: - Select a base theme: click on Customize My Site at your main page and then on Choose a Theme in the yellow banner that should be visible at the top of the page. Look for one with the basic layout and/or colors you want in your custom theme, you can see the basic differences looking at the thumbnails;
- Go to this excellent post by psychotic2 and find the theme you just picked, select all the CSS code and copy it to your Custom CSS page;
- Then you can start changing it: alter the colors, borders, backgrounds, etc.
- What to change? If you've selected the Custom Colors base theme, you don't need to copy the CSS since all the code with the changes you did to the colors will be already in your Custom CSS page with a bonus: most of the sections have comments about what they are, you just need to tweak it more to get what you need. If you have no idea about the sections and selected another theme, you can look at the help at the Custom CSS page or look at this post for a basic guide. There are also some tutorials in the groups already about some changes that people usually request, they are also a good source of knowledge about the CSS section names (selectors), they use the general format: selector {%elements}- How to change? To change a color, simply replace the code or name of the color you want to use. HTML color tables can be found here or here. You can use just a color name like black or red, or use a RGB color code starting with '#', for example: #000 or #00000 is the same as black. For no color at all (full transparency) use transparent, like this: .itembox {background-color: transparent;}You can change the color of borders, its thickness, type or simply remove them using: boder:none like this: . subnav {border: none;}
You can also change the backgrounds or images changing the URL of the image with the one you want to use. Remember that you must host the image on the Internet first, so images on your computer can't be used. You can host them right here on Multiply, see this tutorial. If you want to remove a background, you can use none, like this: .railstart {background: none;} The most common modifiers for the background when images are used are (look here for a full explanation): body { background-image: url(IMAGE_URL); background-repeat: no-repeat/repeat/repeat-x/repeat-y; background-attachment: fixed/scroll; background-position: top/left/bottom/right/center; } If you cannot find the selector you want to change in the base theme CSS, try ones of these (there are the 'generic' CSS's that are loaded before the theme CSS): http://multiply.com/style/site/ http://multiply.com/style/local/
That's the basic instructions. As soon as you get used to the basic functions and the names of the sections in the CSS you can try something more complicated. And the group is open to any questions about it. Enjoy!
Multiply Design has set up an easy way for you to view the Base Theme images and its corresponding CSS Codes in one of our Photo Albums.

You can click on BASE THEMES WITH CSS to be taken to the album to view.
You can use this link and add any of the base themes names to get the base themes CSS. Just replace THEME_NAME with one of the base themes names. Click on the photo to enlarge to view the base theme names.
http://multiply.com/style/custom/THEME_NAME
For example: http://multiply.com/style/custom/skyline
Give it a try...

|  | "Click" on each Base Theme picture to get the CSS code.
Updated with Direct Links |
| |