aタグのページ遷移先のリンクずれを修正したいのですが、PHPで動的にidに番号が振られているのでcssでどのようにリンク先の位置修正すればいいかわかりません。レクチャーいただければ幸いです
<div class="col-item top-gallery-image"> <?php if(!empty($tbl_image1)): ?> <figure> <a href="property/index/<?php echo $category_id; ?>/page:<?php echo $tbl_index_page; ?>#property-<?php echo $tbl_id; ?>"> <div class="col-pic set-bg" data-setbg="<?php echo $this->element('media', array('var'=>array('id'=>$tbl_image1,'width'=>340,'return'=>true)));?>" alt="<?php echo $tbl_image1_alt;?>" style="background-image: url("<?php echo $this->element('media', array('var'=>array('id'=>$tbl_image1,'width'=>340,'return'=>true)));?>");"> </div> </a> </figure> <?php endif; ?> <span class="col-pic-text"><?php echo $tbl_title; ?></span> </div>
<h4 class="text-heading text-primarys pt-medium" id="property-17">xxxx</h4> <a href="http://xxx/property/index/4/page:1#property-17">
あなたの回答
tips
プレビュー