Page 3 of 3

Posted: Wed May 28, 2008 2:28 am
by ymtsk
Thanks alot for this theme. I used it in my newly refurbished site: www.katowice.buddyzm.pl.

Now I'm trying to
1/ format the nav bar
2/ figure out how turn off the comments and trackbacks which I dont need at all. I tried to use the antispam plugin, but it somehow does not block the comments hmmm.

Posted: Wed May 28, 2008 4:17 am
by Don Chambers
michelleyy wrote:I just re-installed. It's doing what it was before. Once you click on a star, the results are to the right a bit.
Lemme give Yellowled a headstart on this. Here is the offending css that is causing michelleyy's problem, specifically the value for margin-left:

Code: Select all

.post ol li {
    line-height:115%;
    margin-bottom:5px;
    margin-left:48px;
}
The karma links are also list items in an ordered list, but the plugin does not seem to define any sort of margin for the karma li's. You could add this to s9y.css stylesheet:

Code: Select all

.serendipity_karmaVoting_links li {
    margin:0!important;
}
- or -

Code: Select all

.post .serendipity_karmaVoting_links ol li {
    margin:0;
}

Posted: Wed May 28, 2008 4:29 am
by Don Chambers
ymtsk wrote:Thanks alot for this theme. I used it in my newly refurbished site: www.katowice.buddyzm.pl.

Now I'm trying to
1/ format the nav bar
2/ figure out how turn off the comments and trackbacks which I dont need at all. I tried to use the antispam plugin, but it somehow does not block the comments hmmm.
1) What do you want to do to the navbar?
2) Comments can be disabled for each entry. When you create an entry, there is a checkbox entitled "Allow comments to this entry" right after the textarea box where you write your entry. If you always want that option unchecked by default, go to "Manage Users", then for your user name, scroll down to "Default settings for new entries" and check no for the option: "Allow comments to this entry".

Regarding trackbacks, there are a variety of posts on that subject... simply search "disable trackbacks". You might also have a look here as a starting point: http://www.s9y.org/11.html#A30

Posted: Wed May 28, 2008 4:33 am
by michelleyy
You guys are freaking ridiculous awesome.. thank you!!!!!!!!!!!!

Posted: Wed May 28, 2008 10:52 am
by yellowled
Don Chambers wrote:Lemme give Yellowled a headstart on this. Here is the offending css that is causing michelleyy's problem, specifically the value for margin-left:
Thanks, Don. I'll add your suggested fix to mimbo in Spartacus asap.

YL

Posted: Wed May 28, 2008 3:07 pm
by Don Chambers
Happy to help.... it worked with my dev tools, but I didn't test it in the actual template, but I presume you will prior to committing...