Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Atahualpa 3 Wordpress theme (http://forum.bytesforall.com/forumdisplay.php?f=2)
-   -   Image caption adjusting (http://forum.bytesforall.com/showthread.php?t=22898)

Marci Oct 31, 2014 08:44 AM

Image caption adjusting
 
I'm trying to change the caption font size. I thought it would be as easy as going to:
Appearance -> Atahulupa Theme Options -> Style images -> Caption text: style
But that hasn't worked. I had a friend set up the site and do some customizing and unfortunately, I wasn't able to understand it all and so I'm not sure if something was customized in a place I can't find it. Below is what the caption text: style shows it to be. It appears that we made the changes from this box, because the default is different. But, I'm not able to get it to change when I change the 0.5em size. I even tried changing the line-height thinking that it was expanding to fit that.

font-size: 0.5em;
line-height: 13px;
padding: 2px 4px 5px;
margin: 0;
color: #666666;

Default: font-size: 0.8em; line-height: 13px; padding: 2px 4px 5px; margin: 0; color: #666666;

I'm tried uploading the customized file copied as a Word doc but wasn't successful. I couldn't find anything about caption styling on it, but since I'm so new to this theme and did not to the customizing, maybe I'm missing something. If you need this info, I can copy it into the body of a message.

The website I'm working on is driftlessprairies.org

Thanks for your help! It is much appreciated.

juggledad Oct 31, 2014 11:43 AM

it would be helpful if you pointed to an image showing the problem.

Marci Oct 31, 2014 01:46 PM

Here's an example: http://driftlessprairies.org/?page_id=2759

I would like to caption text to be smaller. I also have some work to do on the image sizes...may need help with that next!

juggledad Oct 31, 2014 02:39 PM

Ahhh, those are in a gallery.try this. Copy the settings you have at 'ATO->Style images->Caption text: style' and add them in the CSS inserts option with a
HTML Code:

.gallery-caption {...}
around them. For example: if you have
HTML Code:

    color: #00ffff;
    font-size: 0.8em;
    line-height: 13px;
    margin: 0;
    padding: 2px 4px 5px;

you would put this in CSS Inserts:
HTML Code:

.gallery-caption {
    color: #00ffff;
    font-size: 2.8em;
    line-height: 13px;
    margin: 0;
    padding: 2px 4px 5px;
}


juggledad Nov 1, 2014 10:10 AM

You could also edit css.php and change line 1848 from
HTML Code:

.wp-caption p.wp-caption-text {
to
HTML Code:

.wp-caption-text,       
.wp-caption p.wp-caption-text {

and then the ATO->Style IMAGES->Caption Text: Style will apply to images in posts and images in galleries.

This will be fixed in the next release.

Marci Nov 2, 2014 03:22 PM

Worked perfectly! Thanks so very much!!!


All times are GMT -6. The time now is 09:23 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.