Jump to content
  • 0

Centrowanie Jednej rzeczy


Aidanin

Question

Witam chciał bym wycentrowac  to co teraz nazwałem Informacje Dodatkowe ale chodz szukam po szablonach i CSS nie moge tego znalesc dorzucam <div> probowałem to <center> </center> ale nie przyniosło efektu 

<div class="pb-center-column col-xs-12 col-sm-8">
		<section class="page-product-box">
				<h3 class="page-product-heading"><center>OPIS</center></h3>
				<!-- full description -->
				<div  class="rte">{$product->description}</div>
			</section>
			<br><section class="page-product-box">
				<h3 class="page-product-heading"><center>Informacje Dodatkowe</cemter></h3>
				<table class="table-data-sheet">
					{foreach from=$features item=feature}
					<center><tr class="{cycle values="odd,even"}">
						{if isset($feature.value)}
						<td>{$feature.name|escape:'html':'UTF-8'}</td>
						<td>{$feature.value|escape:'html':'UTF-8'}</td>
						{/if}
					</tr>
					{/foreach}
				</table>
			</section>
		</div>

asasas.thumb.png.6468d6746c35b7da24ec5eb7d4225bb7.png

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Nie rzoumiałes a ja źle kod wpisałem  bo użyłem  kodu razem z Opisem głownym kod o ktory sie rozchodzi to 

<section class="page-product-box">
				<h3 class="page-product-heading"><center>Informacje Dodatkowe</cemter></h3>
				<table class="table-data-sheet">
					{foreach from=$features item=feature}
					<center><tr class="{cycle values="odd,even"}">
						{if isset($feature.value)}
						<td>{$feature.name|escape:'html':'UTF-8'}</td>
						<td>{$feature.value|escape:'html':'UTF-8'}</td>
						{/if}
					</tr>
					{/foreach}
				</table>
			</section>

A z tego co rozumiem   to co chce wycentrowac odpowiada  Dokładnie ta czesc 

<table class="table-data-sheet">
					{foreach from=$features item=feature}
					<tr class="{cycle values="odd,even"}">
						{if isset($feature.value)}
						<td>{$feature.name|escape:'html':'UTF-8'}</td>
						<td>{$feature.value|escape:'html':'UTF-8'}</td>
						{/if}
					</tr>
					{/foreach}
				</table>

Wiec reasumujac  nie wydaje mi sie ze dało by rade to zrobic w css ale ja tam nie umiem w CSS HTML I PHP

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...