Hi Scotm,
For custom CSS, it’s best to create a file called “custom.css” in your theme — see the “custom-sample.css” in the theme (you can copy that file, rename it to “custom.css”, and modify it).
For the border, you can probably use the #main element, like:
#main {
overflow: hidden;
border: 1px solid red;
}
The reason the border doesn’t go all the way to the bottom of the element in your current setup is that there are floated elements inside of it — meaning that the parent element does not wrap them. Using “overflow:hidden” is a nice way to wrap those floats.
Makes perfect sense…I’ll give that a whirl.
Cheers
Is there a way to edit the relevant templates (and .css) right from the dashboard, as there is within the single user WordPress?
I don’t think there is Mawjoud, but you can use any simple text editor for something like a simple CSS file. There are also lots of free text editors like TextWrangler that are good for code editing (nice and color coordinated)
Thanks much Wythagy that is helpful!
Dear Lance,
Talking about CSS, where could you modify the My profile page?
It\’s a bit different from other pages as it has 4 columns — at least it looks like so.
My problem precisely is that I want to resize my site to 800px width.
I was able to do this in genetal but My profile still shows a widescreen.
How I can handle this?
Btw, IE6 automatically gives me the desired with no modification in any file,
and I have noticed that there is specific CSS file for IE6.
So I was wondering whether copying ie6.css to some other file would give the 800px display in Firefox, Chrome, etc as well?
Can you help me?