Fluitare
- Quote
- Posted: Fri, 10 Feb 2012 18:34:56 +0000
Hi-
I'd like to use hexcodes to color the text in the panel headers, which means I have to add it from the CSS editing section. Is there a code like
Like content, text, etc.?
Also, I need help positioning. I have an image that takes up about half the screen, and I would like for the panels to all be on the other half. The About taking up around 1/4 (the top right), and Comments and Details each taking up about 1/8, directly below the about.
The About panel is currently where I want it to be, the comments is in the right place but cut off, and I want the details next to the comments.
Link to my profile here.
I copy and pasted some code from a couple guides, but it just made my panels collapse. Since now of them really explained how positioning works, I couldn't adapt the code.
As you can see in the link, the comments get cut off.
Adding:
Makes everything except the very top portion of the About vanish.
I have Firefox 10.0 (I think. Firefox something, anyway), Windows XP, and a v2 profile.
I'd like to use hexcodes to color the text in the panel headers, which means I have to add it from the CSS editing section. Is there a code like
#id_about .h2{content: About Me}
Like content, text, etc.?
Also, I need help positioning. I have an image that takes up about half the screen, and I would like for the panels to all be on the other half. The About taking up around 1/4 (the top right), and Comments and Details each taking up about 1/8, directly below the about.
The About panel is currently where I want it to be, the comments is in the right place but cut off, and I want the details next to the comments.
Link to my profile here.
I copy and pasted some code from a couple guides, but it just made my panels collapse. Since now of them really explained how positioning works, I couldn't adapt the code.
#column_1{width: 260px;} /*Column 1 width*/
#column_2{width: 500px;} /*Column 2 width*/
#column_3{width: 200px;} /*Column 3 width*/
#id_about{height: 160px; width: 400px;} /*Sizing about*/
#id_details{height: 160px; width: 160px;} /*Sizing details*/
#id_comments{height: 160px; width: 160px;} /*Sizing comments*/
#id_about{position: absolute; top: 0px; right: 70px;} /*Placing about*/
#id_comments{position: absolute; top: 200px; right: 70px;} /*Placing comments*/
#column_2{width: 500px;} /*Column 2 width*/
#column_3{width: 200px;} /*Column 3 width*/
#id_about{height: 160px; width: 400px;} /*Sizing about*/
#id_details{height: 160px; width: 160px;} /*Sizing details*/
#id_comments{height: 160px; width: 160px;} /*Sizing comments*/
#id_about{position: absolute; top: 0px; right: 70px;} /*Placing about*/
#id_comments{position: absolute; top: 200px; right: 70px;} /*Placing comments*/
As you can see in the link, the comments get cut off.
Adding:
/*#id_details{position: absolute; top: 200px; right: 250px;} *Placing details*/
Makes everything except the very top portion of the About vanish.
I have Firefox 10.0 (I think. Firefox something, anyway), Windows XP, and a v2 profile.