vol7ron
New Member
- Messages
- 434
- Reaction score
- 0
- Points
- 0
I looked at how you had things coded and you were primarily using paragraphs around everything. So my suggestions were the fastest way to get the effect without changing your design or CSS that much. Ideally, you want to use the combination of text-align:center in the parent DIV and margin:0 auto, to have a cross-browser centered effect.
I realize my remarks might sound confusing, but if you do it step-by-step, you'll see it's right. The text-align:center, centers everything in it. It includes the images and text - I think everything except for that table, if I remember. At this point, the text is centered, but since the text is all in paragraphs, all you have to do is text-align:left the paragraph.
The text in the paragraphs actually inherit the center from the text-align:center on the colleft div. So by adding the text-align:left, you're going to reset that text back to the left side.
Some of your images, though, are in paragraph blocks as well. This means that they are also going to be left aligned. So to get them centered again, you can take them out of that paragraph block, put them in something else like a div, or create an id/class for them and just put p.image {text-align:center};
I thought you'd be using less code and keeping cleaner css/html if you just remove the paragraph blocks, or replace them with DIVs. But I don't know what your intent was for them anyhow. Technically, since there is no paragraph around them, you shouldn't be using them.
The maroon color that might work for you is: #732929 and lighter (I also tried #663333). Mind you, I'm just coming up with these colors off the top of my head and not using a program or anything, so I don't know how accurate they'd be. Back to the color.... you see how the google ad has that light green background, make it a light red #cc9999 (#c99).
To be honest, I like the green and I'm not sure any color will go with it, maybe black, possibly orange. Though, I think red is the best complementary color according to the color wheel. If I can remember back to 4th grade art, almost 15 years ago.
To really make it nice, have a little bit more text. I took away the circular images and your site looked 5x better just from that. But I know you want them, so think about 1) resizing them 2) reshaping them 3) placing them in another location. They could be one of those things that you put in the header image, or the header container over the background image, right aligned and indented in a little from the right. Just something to think about.
FYI, I'm just using color placeholders as skins for my site... i'm going to ask someone from here to skin something for me. Some images and what not. I have photoshop and have a good idea of what I want... but I'm lacking one thing: time. Also, I'm still building everything from scratch.
Building the CMS, login, you name it. The one thing I will probably hold off on building is the forum software. I made a nice looking one in ASP.NET when I was learning it, but it just took so much time. The current project I'm working on uses nothing but Perl/Javascript and some good ol' fashioned sweat.
I realize my remarks might sound confusing, but if you do it step-by-step, you'll see it's right. The text-align:center, centers everything in it. It includes the images and text - I think everything except for that table, if I remember. At this point, the text is centered, but since the text is all in paragraphs, all you have to do is text-align:left the paragraph.
The text in the paragraphs actually inherit the center from the text-align:center on the colleft div. So by adding the text-align:left, you're going to reset that text back to the left side.
Some of your images, though, are in paragraph blocks as well. This means that they are also going to be left aligned. So to get them centered again, you can take them out of that paragraph block, put them in something else like a div, or create an id/class for them and just put p.image {text-align:center};
I thought you'd be using less code and keeping cleaner css/html if you just remove the paragraph blocks, or replace them with DIVs. But I don't know what your intent was for them anyhow. Technically, since there is no paragraph around them, you shouldn't be using them.
The maroon color that might work for you is: #732929 and lighter (I also tried #663333). Mind you, I'm just coming up with these colors off the top of my head and not using a program or anything, so I don't know how accurate they'd be. Back to the color.... you see how the google ad has that light green background, make it a light red #cc9999 (#c99).
To be honest, I like the green and I'm not sure any color will go with it, maybe black, possibly orange. Though, I think red is the best complementary color according to the color wheel. If I can remember back to 4th grade art, almost 15 years ago.
To really make it nice, have a little bit more text. I took away the circular images and your site looked 5x better just from that. But I know you want them, so think about 1) resizing them 2) reshaping them 3) placing them in another location. They could be one of those things that you put in the header image, or the header container over the background image, right aligned and indented in a little from the right. Just something to think about.
FYI, I'm just using color placeholders as skins for my site... i'm going to ask someone from here to skin something for me. Some images and what not. I have photoshop and have a good idea of what I want... but I'm lacking one thing: time. Also, I'm still building everything from scratch.
Building the CMS, login, you name it. The one thing I will probably hold off on building is the forum software. I made a nice looking one in ASP.NET when I was learning it, but it just took so much time. The current project I'm working on uses nothing but Perl/Javascript and some good ol' fashioned sweat.
Last edited: