Hello everyone!
I'm pretty new to Drupal so this may be a silly question.. however I don't know where to start to get this working.
I'd like to modify a view so that it displays fields in a specific way. As seen below, the content in the list would be all the items in one field, while the content in the div sections would have content from a series of other fields. However, they would all be associated with one another so I can link to the content in the divs from the list.

This is what I mean:

<div>
     <ul>
           <li><a href="#a1">1</a></li>  // Content id field 1
           <li><a href="#a2">2</a></li>  // Content id field 2
             ...etc
     </ul>
     <div>
           <div id="a1">
                    <div>Item 1 Title....</div>
                    <div>Item 1 content....</div>
            </div>
           <div id="a2">
                    <div>Item 2 Title....</div>
                    <div>Item 2 content....</div>
            </div>
      </div>
</div>

Would anyone know how I could go about structuring a view so it could display this way... or could someone point me in the right direction to tutorials and videos I should view to help me with this?

Thanks you so much! Sorry if this is a dumb question. :)

Comments

Use view's advance option

Hi,

If you go to Views screen, then there is a Advance option in right side.

In Advance option, you can find a link "theme".
Click on "theme" link you will see the different level of customizing.
e.g. Row level, full view, field level, etc.

-Imran

Theme stays at default..

Thanks for your help!
Figured out what I was doing wrong!

nobody click here