SOLVED: Entry/sidebar border color change, moving of nav-links & highlighting subject lines

Jul 02, 2011 04:54

 Hi, I'm a total newbie to the CSS, but thanks to this comm I managed to customize almost everything I wanted...however there are 4 things I couldn't find anything about (searched the tags through).

1. If it's possible I want to change the color of the border-line between entries and the sidebar to #151B8D Solved!

2. I would like to move the nav- ( Read more... )

entries:header, sidebar:borders, header:nav links

Leave a comment

Comments 22

av8rmike July 6 2011, 13:05:34 UTC
1. It looks like you've already done this ...?

2. You can't do this with just CSS; you need a theme layer.

3. Have you tried adding to .asset-name {} something like background-color: xxxxxx; ?

4. You could do this:
#content { margin-top: 5px; }

Reply

denig37 July 6 2011, 13:31:18 UTC
Oh, thank you :-)

1. nope, it's still purple

2. oh, OK

3. could it be a bit wider and loger than the subject text so the text won't start where the highlighting starts and it's wider (and gets wider when the text is more than one row)

4. THANK YOU! :_D

Reply

av8rmike July 7 2011, 13:00:27 UTC
For 1), a lot of these Expressive themes use a fixed width image for the border, which is why you can't change the color. This should do it:

.layout-wt #content-inner { background-image: none; }
#alpha { border-right: 1px solid #151B8D; }
#beta { width: 189px; }

3. You can't start the background any further to the left, but you could indent the text with some left padding in .asset-name. It should stretch if the subject text is more than one row.

Reply

denig37 July 7 2011, 13:21:33 UTC
1. Oh thank you thank you thank you *hugs* It's blue! :-D

3. THAT! Yeah...could you help me with that please? (no idea how to do that) and maybe something like moving the text a fex pixels from the bottom of the subject line if there's a way? (so under the white text is still a little bit blue)

Reply


Nav at the Bottom anarano July 11 2011, 16:33:33 UTC
This will work, I've tested it:

#page {border-bottom:30px solid black; }
#header {position:static }
.nav {position:absolute; bottom:-5px; left:20px}

Reply

Re: Nav at the Bottom anarano July 11 2011, 16:35:43 UTC
Re: Nav at the Bottom denig37 July 11 2011, 17:34:09 UTC
THANK YOU THANK YOU THANK YOU!!! *hugs*
It worked perfectly :-D

Reply


Leave a comment

Up