Ported: Mimbo

Skinning and designing Serendipity (CSS, HTML, Smarty)
ymtsk
Posts: 1
Joined: Tue May 27, 2008 4:56 am

Post 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.
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post 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;
}
=Don=
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post 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
=Don=
michelleyy
Regular
Posts: 7
Joined: Mon May 26, 2008 10:43 pm

Post by michelleyy »

You guys are freaking ridiculous awesome.. thank you!!!!!!!!!!!!
yellowled
Regular
Posts: 7111
Joined: Fri Jan 13, 2006 11:46 am
Location: Eutin, Germany
Contact:

Post 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
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post 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...
=Don=
Post Reply