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
Changing the size of (next page ...)
Re: try
Thanks !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;
}
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
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
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/
# 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/
Re: try
Hi !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
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
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
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/
# 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/
Re: try
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
Patrice
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: try
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
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/
# 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/
Re: try
Ok it works, all my fault. Bu it also affect this line :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
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
Hi!
You must then add another CSS that will re-set the entry footers again:
Best regards,
Garvin
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
}
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/
# 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/
Re: try
And it does the trick thanks a lot.garvinhicking wrote:Hi!
You must then add another CSS that will re-set the entry footers again:
Best regards,Code: Select all
.serendipity_entry div.serendipity_entryFooter { font-size: XXX }
Garvin