Colours for visualizing, not my fault if you go blind. :B
(may 23, reworked link section. USE BBCODE INSTEAD OF FILTERED HTML )
Remember to put your CSS under the cut!
Set your Input Format to BBCode!
Write all CSS in one line!
You don't need to credit me for anything.
CSS Templates
The easiest way yo use these templates is to change #ffffff hex colours and replace background images.
Experiment with the colours to see what is what.
simplest and easiest to edit; lacking refinement
simple, easy to edit; slight transparency effects
refined, transparency effects, right-aligned sidebar; code for 'normal' sidebar in comments (page 2)
3 Versions. refined, heavy page altering, lots of transparency
This Blog
This blog is only useful to you when you have any
pre-knowledge of CSS!
Otherwise you will not gain much from it. This blog shows the "names" of different parts through different colours.
If you want to understand CSS, check out
* {CSS Basics} How Do I CSS?
BLOG CODE
Colours for Sidebar Links
OUTSIDE (RED & PINK)
body
(includes: #logo #header #header-region #center .sidebar .menu .item-list
anything pink and red here)
#logo
#header
#header-region
(includes: .menu)
#center
(includes .sidebar .menu .item-list)
.sidebar
(includes: .menu .item-list)
.menu
.item-list
INSIDE (BLUE)
#wrapper #container #center .right-corner .left-corner
(includes: .breadcrumb .node .submitted(blog only) #tabs-wrapper .picture .links
anything blue)
.breadcrumb
.node
.submitted
(in comments and blog)
#tabs-wrapper
.picture
.links
COMMENTS (GREEN)
#comments
(includes: .comment.odd, tr.odd tr.even, .comment.even)
(only visible when you have "background:none" on .comment.odd, tr.odd and tr.even, .comment.even )
.comment.odd, tr.odd
(darker comments)
tr.even, .comment.even
(lighter comments)
.new
(the "New" that appears by a new comment)
.comment div.links
("edit" and "reply" buttons, although I am not sure if it affects all links in comments)
CSS rule set
I am not a professional, so I can't guarantee accuracy. My english is not perfect either, but I hope this will help you understand CSS a little bit better.
Selectutorial
Very helpful site if you want to understand CSS better. I highly recommend looking through it sometime.
Build of a basic CSS code:
The
start tag and the
end tag define where your CSS code starts and where it ends.
The
Selector "selects" the element of the page that is affected by the rule set. If you want to define more than one Selector at once, you can seperate them with a comma.
example
body, .sidebar {color:#ffff00}
The
Declaration Block is the container for
Declarations. It stands between curly brackets.
The
Declarations tell the browser how to draw the selected element.
(Not pictured: A Declaration splits up into
Property and
Value. The Property is the aspect that you chose to style (like font, background), while the Value is the exact style for this Property (like font style, background color).)
Link colours
To change the colour of links in different parts, you have to add an
"a" at the end of your
Selector.
example
body a {color:#ff00ff}
If you want to change the link-color when you hover your mouse over it, you additionally have to add
:hover, which is a so-called
Pseudo-Class
example
body a:hover {color:#00ffff}
You can apply these
Pseudo-Classes not only to links, but pretty much any Selector.
Read more about it
here!
If you have any problems, questions, ideas or find any mistakes here, please let me know!
Enjoy. ♥
Instead of changing the
Hi Unplugged How do you
How do you chance the color of a link, inside a box?
Thanks!
Um... I wan't links on my
Oh, yeah, um, how do I center this thing?
I apologize for
Torturer-- has your question been resolved by now?
can you specanfy which box you mean? generally, if you want to change the color of links, use this without the spaces:
[ code ][ url=http://stuffgoeshere.com ][ color=#000000 ]link[ /color ][ /url ]
EternalQueen-- try simply "a{color:#fff}" ? if not, try "a:link, a:visited{color#fff}"
For the centering, keep the width of the comments the same as the width of your blog. Means you add "#comments{width:1000px}"
Okay, I am in the need of
I am desperately trying to get a scroll box like the one seen here, but when I tried to use the one I found here a few pages back, it completely messes up my blog. Any help...?
Ugh, I hate CSS so much.
You mean like this one
Does it work without your "own" content? Maybe it clashes because you forgot to close a div or something.
Could you give me your code (the one that doesn't work for you)?
....I totally forgot about
Excuse me while I go slap myself.
/ slaps self
I just created a different testing blog, and it looks like everything's working fine. If I run into trouble, I'll come back. Ugh, I feel so stupid rofl
EDIT: hokay, slight hitch. The add comment section on the bottom is on the left hand side now. Any way to get it back over to the right?
EDITAGAINBECAUSEIFAIL: Right here. 8v
yes, you must have one </div>
</div>
too much somewhere. brb checking this.[e] hmmm... try removing the /div after /center?
Yes, it worked! Just one
Just one slight thing.
I'm noticing that the text in the boxes aren't level. Am I missing something here?
yeah, that's an issue I
[e] OR. you might want to check how many empty lines you left before each 'title'. keep them all the same.
Ah I see. I'm pretty sure
EDIT: Ugh. I've looked all over the code, but I can't seem to figure this out.
The text for "Inner circle," and "Factoids" aren't the same colour as the rest of the titles. I can't figure out why. =/
Its alot of helping css in
Hello again I was just
I was just wondernig how you modify the sidebar. I've seen a bunch of people only having the "Home", "Recent posts" and such at the top of their bio in a box... How do I do that?
They remove the sidebar and
.sidebar{display:none}
Hai, hope I don't bother.
Do you know how to make the comments look like this:
http://endlessforest.org/community/node/53233
Thanks ♥
Shush, it's been almost 13
"look like this" is kind of vague though. I will make some wild assumptions and throw this code at you:
.comment{border-top:1px solid #000000;border-left:1px solid #000000;border-right:1px solid #000000;}tr.even,.comment.even,tr.odd,.comment.odd{background:none}#comments .picture{display:none} .content .clear-block{display:none}
I noticed that in that blog I
Also, is there a way to get everything even, as opposed to some columns being higher up than others?
Jesus I can't believe I
Can you give me your code please? http://textuploader.com/
~Track Ive been looking for
Ive been looking for something like this, TY
No, it's totally fine! Here
Here you go. (:
I think I'll only be able to
Ah, it's alright. I can wait.
Perfect ♥ It
Thanks a bunch ♥
I'm here again, and trust
How do I change the text and background color on the Reply thing in comments? ♥
I'm actually not sure right
.comment div.links{background:#ffffff}.comment div.links a{color:#ff0000}.comment div.links a:hover{color:#ffff00}
1) Thank you for putting this
2) Can you point me into the direction of centred scroll boxes?
There is a pretty simple
<center> </center>
tagsYou're amazing, thank you so
YesYesYes! Thank you
Hi :] Do you know where I can
Do you know where I can download backgrounds that you can look through?
Its exactly like the ones you use to the most of your blogs c:
Transparency
Thanks alot, I'll try that
Edit:
By the way..Do you know how to make two narrow boxes beside the regular box? Like this:
http://endlessforest.org/community/21-profile
And I have one more question, how do I make a box whit round corners?
Thanks alot <3
Like make the box on a line?
<*table style="border:hidden">
<*tr>
<*td>
BOX 1
<*/td>
<*td>
BOX 2
<*/td>
<*/tr>
<*/table>
(remove asterix -> *)
Round box:
;-moz-border-radius: 15px;border-radius: 15px;
I shall track this for
EternalQueen your awesome,
Btw, where do I insert the: ;-moz-border-radius: 15px;border-radius: 15px;
Corell, you add it to the div
<div style="width:500px;height:250px;overflow:auto;background:#ffffff;-moz-border-radius: 15px;border-radius: 15px;"> text </div>
^ That.
Thats just wonderful, thank
Ah, this is very helpful. I
(No subject)
Hello. I have a few
1) How do you alter the size of the comments in the comment boxes?
2) How do you alter the size of the "Add new comment" etc. that is on the bottom of the blog?
3) Also, how do you get rid of the glow around the blog? Here's the blog. I'm talking about that faint white glow. Or is there a way to alter its colour?
4) How do you change the size of the text in the sidebar?
Hello. I have a few
1) ehh do you mean the comment 'boxes' themselves or really just the 'space' in which the text is. Or do you mean text size? If it's that, add ".comment{font-size:10px}"
2) ".node .links{font-size:10px}"
3) remove this: "-moz-box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);-webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);"
If you want to alter the colour, change the rgb values, aka the 255y things. If you go to your drawing program and chose the colour, the variables should show up. R for the first number, B for the second, G for the third. The 0.6 is the transparency. 1 is opaque while 0.1 is transparent.
4) add ".sidebar{font-size:10px}"
...And I'm back. xD 1.) How
1.) How do you change the sidebar 'backround'? Like, the blue stuff?
2.) How do you change the color of the commnets and the comment frame?
For the sidebar background
OR, if you actually mean the blue stuff: #wrapper #container #center .right-corner .left-corner{color:#000000}
Comments: .comment .odd, .comment .even{background:#000000;border:5px solid #666666}
If you want to use a background image, replace "color:#000000" with "background:url('imgurlhere')"
Thank youuu ♥
I'm sorry but I just totally
For the sidebar background (which isn't blue here BUT): .sidebar{background:#000000}
OR, if you actually mean the blue stuff: #wrapper #container #center .right-corner .left-corner{background:#000000}
Comments: .comment .odd, .comment .even{background:#000000;border:5px solid #666666}
If you want to use a background image, replace "background:#000000" with "background:url('imgurlhere')"
Ah, these worked perfectly.
If my comment code
What do I add to change the border?