Change Image Title & Caption Font Size In Horizontal

1957Goldtop / 2012-12-21 01:01:54   

I'm trying to change the font size and formatting of the image caption and titles. I know I need to change .title and .caption... but I just can't figure out where the CSS file is where I need to do it.

I'm using the horizontal exhibition: jeffsingerphotography.com/portfolios/business-tech/

Thanks!

arsondpi / 2012-12-21 10:18:29   

Hello - it's #img-container .captioning .title and #img-container .captioning .caption
Try adding them to your style.css (Admin/Assets/Theme)

1957Goldtop / 2012-12-21 15:17:30   

When I look at the page in Firebug, I can see those being defined somewhere. I just don't know what style sheet they're being defined in. Where are the currently being defined so I can go in and change the ones that are already there?

Also, I don't see Admin->Assets->Theme

In my "ndxz-studio" folder I see an "asset" folder but it doesn't have a "theme" folder.

Thanks!

arsondpi / 2012-12-22 09:09:11   

Ok - reset!!! Jeez - I not of great with you, am I? Seems I keep making mistakes in this thread!

1. Using your ftp application go to ndxz-studio/site/plugin/exhibit.horizontal.php and open it in a code editor.

2.Towards the end of the script you'll find the css bit

  1. function dynamicCSS()
  2.     {
  3.         return "#img-container { width: " . ($this->final_img_container + 1) . "px; }
  4. #img-container #text { float: left; width: " . ($this->text_width + $this->text_padding_right) . "px; }
  5. #img-container #text p { width: " . $this->text_width . "px; }
  6. #img-container .picture_holder { float: left; }
  7. #img-container .picture { /* padding-top: 10px; */ }
  8. #img-container .captioning .title { margin-top: 12px; font-weight: bold; }
  9. #img-container .captioning .caption { }";
  10.     }

As I mentioned #img-container .captioning .title and #img-container .captioning .caption are the ones you should be editing.

1957Goldtop / 2012-12-22 21:49:42   

That was it... Thanks!

This thread has been closed, thank you.