Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Change font size of Archive Plugin with CSS WordPress

  • SOLVED

I recently installed Smart Archives Reloaded. Per his website: http://scribu.net/wordpress/smart-archives-reloaded/advanced-tweaking.html

I've made all the correct changes. Added the code in the correct place. Copied the css contents of the plugin into my styles.css

No matter what I change I can't change the font size. It seems to not be working. What can I do to change the font size for this plugin?

Here is a link to the archive page: http://www.galerieproject.com/archive/

Thanks!

Answers (2)

2013-02-24

Arnav Joy answers:

try this

ul.archive-list li a {font-size:15px !important}


stevelogik comments:

That worked! What about the Month/year list?

http://www.galerieproject.com/archive/


Arnav Joy comments:

for year you can use:-

ul#smart-archives-block li strong a {font-size:15px !important}

for month you can use:-

ul#smart-archives-block li span.empty-month {font-size:15px !important}
ul#smart-archives-block li a {font-size:15px !important}


stevelogik comments:

Thank you!

2013-02-24

Abdelhadi Touil answers:

Try this:
#content ul.archive-list li {
font-size: 14px;
}

you can change the font size as you wish of course.
Good luck.