Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

Alvaro Castro
Alvaro Castro
8,877 Points

Help with modifying a web page with css in lists

Hi!

I have been studying in treehouse and im doing a marketplace, using the marketify wordpress template.

I need help with css.

I have a long list with subcategories and i want it to be like in www.idealista.com .

Plugins doesn´t work beacuse the categories are not of wordpress, are of easy digital downloads plugin.

I don´t know how to change this thing!!

If anyone could help me would be amazing.

My web page is mvp.laestanteria.es , if you scroll down you will see what i need.

Thanks from Spain

1 Answer

Sue Dough
Sue Dough
35,800 Points

Marketify is a beautiful theme. The team behind it is very knowledgeable and they are great coders. However they do not help too much with customization so you will need to learn more about editing templates and creating your own.

I checked out your site and it looks like your having some issues. Here is a screenshot. http://awesomescreenshot.com/0d94m32i97

You could try something like

<?php
/**
 * Output a list of EDD's terms (with links) from the 'download_category' taxonomy
*/
function sumobi_list_edd_terms() { 
    $taxonomy = 'download_category'; // EDD's taxonomy for categories
    $terms = get_terms( $taxonomy, 'child_of=6' ); // get the terms from EDD's download_category  and select child
?>
<ul class="download-categories">
<?php foreach ( $terms as $term ) : ?>
   <li>
       <a href="<?php echo esc_attr( get_term_link( $term, $taxonomy ) ); ?>" title="<? php echo $term->name; ?>"><?php echo $term->name; ?></a>
</li>
<?php endforeach; ?>
</ul>

I would look into learning how to customize your templates and create your own and you could use the snippet above.

Sue Dough
Sue Dough
35,800 Points

If you need work done, let me know. I am very familiar with EDD.

Alvaro Castro
Alvaro Castro
8,877 Points

Thank you very much, i will be working today in what you teach me. I have modified a little the page, and now its going better and better. The new directory is www.laestanteria.es

Thank you very much again!