First of all, thank you for this community. I have read through it extensively in order to make the legion of small changes to Mixit I wanted.
A couple of niggles left:
1) Is there a way of disabling showing the user information (poster name and icon) for posts, but not for comments?
2) I seem to be unable to style the headings in the sidebar. This should be really easy, but apparently not!
Extra information:
- The community is
021408. We have a paid account.
- When I had the profile widget thing up I was able to change its heading colour, but none of the others changed with it.
- I can see from the source code that they are styled as a
H3
with the classwidget-header
, however my attemps to add something like .nav a {color:#FFFFFF;} don't seem to have had an effect - In the hearts CSS the only references I can find to the current colour (
FFA233
) are things I have already styled, and no mention of h3s anywhere. - I have tried the suggestions in previous posts (eg this one) but they didn't do anything.
.layout-tw #alpha-inner {
width:580px;
padding-left:70px;
padding-right:30px;
padding-top:30px;
}
#header-inner {
position: static;
background: url(http://www.andustar.com/files/header4.jpg) center bottom no-repeat;
}
#page-inner {
background-color: #FFFEFB;
}
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background:#710505;
}
.user-icon {display: none;}
a {
font-weight: bold;
text-decoration: underline;
color: #E21010;
}
.nav a {
color: #FFFEFB;
}
#comments .comment-odd {
background-color: #FFF5F7;
padding:2px;
}
.widget-content {
padding: 0 15px;
font-size: 11px;
color:#000000;
}
.widget-content a:link,
.widget-content a:visited,
.widget-content a:hover {
color : #B0270D;
}
.widget-header {
padding-top:40px;
font-size: 14px;
color:#000000;
font-weight: bold;
background-color:#FFFEFB;
}
.widget .widget-header a {
color: #B0270D;
text-decoration: none;
}
Any help would be appreciated. I am sure I must be being dumb somewhere!
Comments
.user-icon
line commented out?Secondly, if you're trying to change the color of the non-profile sidebar headers, you need to add the highlighted part: (
.nav a {}
is for the header nav links, which seem to be hidden.)Edited at 2008-02-03 04:50 am (UTC)
.user-icon {display: none;}
was causing icons not to show up in comments. So I took it out of the CSS on the actual thing, but forgot to change the CSS I'd posted here.The icons thing I've still not managed to get to work - either it disables all or none, whichever way the 'show icons in comments' setting is set.
.asset-body .user-icon {display: none;}