Page 1 of 1

Changing the size of (next page ...)

Posted: Wed Aug 23, 2006 6:49 pm
by eightgr
Hello !

Sorry if it's a stupid question. I would like to change the size of this text at the bottom of my blog : (Page 1 of 192, totaling 576 entries) ยป next page

Is there a Css properties which I can use to do this ?

Thanks

Patrice

try

Posted: Wed Aug 23, 2006 7:19 pm
by AzRAeL
the text you mentioned is in a div with class="serendipity_pageFooter"

so in your css, this should change the fontsize:

.serendipity_pageFooter{
font-size: 8px;
}

Re: try

Posted: Thu Aug 24, 2006 7:51 am
by eightgr
AzRAeL wrote:the text you mentioned is in a div with class="serendipity_pageFooter"

so in your css, this should change the fontsize:

.serendipity_pageFooter{
font-size: 8px;
}
Thanks !
But I don't have this class in my CSS. So I add it but it doesn't work .

any idea ?

Patrice

Re: try

Posted: Thu Aug 24, 2006 11:55 am
by garvinhicking
Hi!

please post your URL, then we could look at it.

You can also look at it by viewing your HTML source result and checking what CSS classes are used there. :)

Regards,
Garvin

Re: try

Posted: Thu Aug 24, 2006 12:22 pm
by eightgr
garvinhicking wrote:Hi!

please post your URL, then we could look at it.

You can also look at it by viewing your HTML source result and checking what CSS classes are used there. :)

Regards,
Garvin
Hi !

http://news.itsartmag.com

Thanks

patrice

Re: try

Posted: Thu Aug 24, 2006 1:02 pm
by garvinhicking
Hi!

Try .serendipity_entryFooter instead of .serendipity_pageFooter in your CSS!

(Sorry I forgot your URL! Your nickname didn'T ring a bell for me :) )

HTH,
Garvin

Re: try

Posted: Thu Aug 24, 2006 1:54 pm
by eightgr
garvinhicking wrote:Hi!

Try .serendipity_entryFooter instead of .serendipity_pageFooter in your CSS!

(Sorry I forgot your URL! Your nickname didn'T ring a bell for me :) )

HTH,
Garvin
:-) Still doesn't work. BTW Is there a complete CSS reference class guide for Serendipity ?

Patrice

Re: try

Posted: Thu Aug 24, 2006 1:56 pm
by garvinhicking
Hi!

You must look into your stylesheet, there already is a "div.serendipity_entryFooter {" declaration. You need to modify that one.

A CSS references for the default s9y template is online in the documentation on www.s9y.org. However many templates use their own CSS, so it's always specific to which one you use.

Best regards,
Garvin

Re: try

Posted: Thu Aug 24, 2006 2:29 pm
by eightgr
garvinhicking wrote:Hi!

You must look into your stylesheet, there already is a "div.serendipity_entryFooter {" declaration. You need to modify that one.

A CSS references for the default s9y template is online in the documentation on www.s9y.org. However many templates use their own CSS, so it's always specific to which one you use.

Best regards,
Garvin
Ok it works, all my fault. Bu it also affect this line :
Posted by IXXXXX in 3D at 08:02 | Comments (0) | Trackbacks (0) | Edit entry | Top Exits (0)

any chance to chance the CSS class affacted to this line ?

Thanks

Patrice

Re: try

Posted: Thu Aug 24, 2006 3:36 pm
by garvinhicking
Hi!

You must then add another CSS that will re-set the entry footers again:

Code: Select all

.serendipity_entry div.serendipity_entryFooter {
font-size: XXX
}
Best regards,
Garvin

Re: try

Posted: Thu Aug 24, 2006 5:53 pm
by eightgr
garvinhicking wrote:Hi!

You must then add another CSS that will re-set the entry footers again:

Code: Select all

.serendipity_entry div.serendipity_entryFooter {
font-size: XXX
}
Best regards,
Garvin
And it does the trick thanks a lot.