Link to home
Start Free TrialLog in
Avatar of Amanda Watson
Amanda WatsonFlag for Australia

asked on

Easy css question moving title underneath an image

Hi, On this site
http://beltedgalloway.org.au/
 you will see under the header there are 4 images with titles on the top of the image.
I would like them to sit underneath the image.
Can anyone tell me what I need to change/add to css to make this happen?
Thanks so much,
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

you can try something like:

move the <h2> element underneath the <a> element.

<div class="wpb_wrapper">
	<div class="wpb_single_image wpb_content_element vc_align_left">
		
		<figure class="wpb_wrapper vc_figure">
			<a href="http://beltedgalloway.org.au/council/the-association-2-2-2/" target="_self" class="vc_single_image-wrapper   vc_box_border_grey"><img src="http://beltedgalloway.org.au/wp-content/uploads/2017/02/Membership-Forms-150x150.jpg" class="vc_single_image-img attachment-thumbnail" alt="" height="150" width="150"></a>
		<h2 class="wpb_heading wpb_singleimage_heading">Fee Schedule</h2></figure>
	</div>
</div>

Open in new window


User generated image
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Amanda Watson

ASKER

Fantastic - worked a treat
You are welcome.