Changing the size of (next page ...)

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
eightgr
Regular
Posts: 66
Joined: Thu Oct 27, 2005 5:52 pm

Changing the size of (next page ...)

Post 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
AzRAeL
Regular
Posts: 22
Joined: Sun May 28, 2006 7:45 pm

try

Post 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;
}
eightgr
Regular
Posts: 66
Joined: Thu Oct 27, 2005 5:52 pm

Re: try

Post 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
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: try

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
eightgr
Regular
Posts: 66
Joined: Thu Oct 27, 2005 5:52 pm

Re: try

Post 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
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: try

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
eightgr
Regular
Posts: 66
Joined: Thu Oct 27, 2005 5:52 pm

Re: try

Post 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
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: try

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
eightgr
Regular
Posts: 66
Joined: Thu Oct 27, 2005 5:52 pm

Re: try

Post 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
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: try

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
eightgr
Regular
Posts: 66
Joined: Thu Oct 27, 2005 5:52 pm

Re: try

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