Centering Testimonials Content Box on Page

2 replies·opened Jan 18, 2017
S
SemiColonWebSTAFFJan 26, 2017

Hello,

This is Definitely Possible. You can simply remove the .col_two_fifth and .col_three_fifth DIV Containers and move the .fslider Element that contains the Testimonials directly inside the parent .container DIV. Example you can simply find the following code in the Page:

<div class="container clearfix">

	<div class="col_two_fifth nobottommargin"> </div>

	<div class="col_three_fifth nobottommargin col_last">

		<div class="fslider testimonial testimonial-full nobgcolor noborder noshadow nopadding" data-arrows="false">
			<div class="flexslider">
				<div class="slider-wrap">
					<div class="slide">
						<div class="testi-content">
							<p>Similique fugit repellendus expedita excepturi iure perferendis provident quia eaque vero numquam?</p>
							<div class="testi-meta">
								Steve Jobs
								<span>Apple Inc.</span>
							</div>
						</div>
					</div>
					<div class="slide">
						<div class="testi-content">
							<p>Natus voluptatum enim quod necessitatibus quis expedita harum provident eos obcaecati id culpa corporis molestias.</p>
							<div class="testi-meta">
								Collis Ta'eed
								<span>Envato Inc.</span>
							</div>
						</div>
					</div>
					<div class="slide">
						<div class="testi-content">
							<p>Incidunt deleniti blanditiis quas aperiam recusandae consequatur ullam quibusdam cum libero illo rerum!</p>
							<div class="testi-meta">
								John Doe
								<span>XYZ Inc.</span>
							</div>
						</div>
					</div>
				</div>
			</div>
		</div>

	</div>

</div>

and replace it with:

<div class="container clearfix">

	<div class="fslider testimonial testimonial-full nobgcolor noborder noshadow nopadding" data-arrows="false">
		<div class="flexslider">
			<div class="slider-wrap">
				<div class="slide">
					<div class="testi-content">
						<p>Similique fugit repellendus expedita excepturi iure perferendis provident quia eaque vero numquam?</p>
						<div class="testi-meta">
							Steve Jobs
							<span>Apple Inc.</span>
						</div>
					</div>
				</div>
				<div class="slide">
					<div class="testi-content">
						<p>Natus voluptatum enim quod necessitatibus quis expedita harum provident eos obcaecati id culpa corporis molestias.</p>
						<div class="testi-meta">
							Collis Ta'eed
							<span>Envato Inc.</span>
						</div>
					</div>
				</div>
				<div class="slide">
					<div class="testi-content">
						<p>Incidunt deleniti blanditiis quas aperiam recusandae consequatur ullam quibusdam cum libero illo rerum!</p>
						<div class="testi-meta">
							John Doe
							<span>XYZ Inc.</span>
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>

</div>

This will definitely work fine. Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard