Alexandre Maciel
asked 9 years ago

Hi, again!

I would like that the way that appears in footer page…
Sreenshot example:
![enter image description here](http://s23.postimg.org/54j4q18cb/footer.jpg " ")

…shows up at the title of the article:
Screenshot example (this is a Photoshop montage):
![enter image description here](http://s16.postimg.org/5s81neen9/Caminho1.jpg "enter image title here")

And, the category links…
Screenshot example:
![enter image description here](http://s3.postimg.org/rkwyyaebn/Categorias.jpg "enter image title here")

…i would like them to show below the article:
Screenshot example (again this is a Photoshop montage):
![enter image description here](http://s3.postimg.org/iim9whipv/end_Article.jpg "enter image title here")

would it be possible?

Tks!

2 Answers
DominicStaff
answered 9 years ago

Issue1: To make the breadcrumbs section shows up at the title of the article, you can open the content-single.php file, add the following code under line 8.
<div class="span9"><?php dw_breadcrumb(); ?></div>

Then add the following code to the style.css file:

.site-content .post .breadcrumbs {
  margin: 0;
  margin-left: -40px;
  list-style: none;
}
 .site-content .post .breadcrumbs li {
  background-image: url(assets/img/arrow-right-222.png);
}
.site-content .post .breadcrumbs li {
  display: inline-block;
  padding: 0 0 0 10px;
  margin: 0 5px 0 0;
  background: url(assets/img/arrow-right.png) no-repeat left 8px;
}

Issue2: If you would like the categories link to show below the article, you can add the following code under line 27.

<div class="entry-meta">
   <?php echo get_the_category_list(); ?>
</div>

Hope this helps !

john pate
answered 9 years ago

Yes Dominic you are great, nice one Results

Powered by DW Question & Answer Pro