Can anyone tell me if there is a setting I can change that will overlay the text of the Image credit source onto the image instead of below…like this..
http://screencast.com/t/C0sDLrHDzgz
I’m trying to push up our content a bit especially for mobile and that little extra space it does does make a difference.
Thanks if anyone knows 🙂
Joel
Sounds good. Here is a sample
http://aboutallthings.com/boy-gives-girl-game-ball/
You may need to look at responsive view to see the image at the top of the screen.
If you see some .css I can change let me know 🙂 – Love this Theme!
Joel
HI
Try this css in theme panel; > custom code > custom css: http://screencast.com/t/jHAPskEs4da
.wp-caption-text {
color: red;
font-size: 15px;
}
Let me know how it goes.
Thanks!
Thanks….so that is just changing the color to red?
What I’m looking for is to put the text on top of the photo in the bottom right corner in like white or grey text… is there some .css to do that?
Hi
The above code was just an example which can be customized as needed. You can change the color and also add new properties if you need a different style.
To move the caption text above feature image you need to edit: td_module_single_base.php file and move the and move the indicated code like here: http://screencast.com/t/LXAfb5fc – http://screencast.com/t/yXAYWFs4tL – http://screencast.com/t/deGLi2U07V
Thanks!
Thank you…. I guess I should clarify…
I want the text to me “IN” in the image (An overlay)…not below or above but to be “In” the image at the bottom right corner so that the only thing is and image the the text in the image.
I just want to do this to save space for mobile as every line counts…
Does that make sense if you go back an look at my original photo I show a box where I want the image to be.
Hi
Try this css: http://screencast.com/t/AKipmC3pO
.wp-caption-text {
position: relative;
top: -25px;
color: white;
}
Thanks!