By dev25 on
So I have a content type which is basically a resume. When I click on each content type, it displays all the field data. However, it just displays each field in a column. How can I arrange the content on the display page?
For instance it is now displayed like:
FIRST NAME:
Charles
LAST NAME:
Wilson
I would like to see
FIRST NAME: LAST NAME:
Charles Wilson
Comments
You may be able to get there
You may be able to get there with Display Suite - it adds a lot of flexibility to how your fields on your nodes are displayed (see the Manage Display tab in your content types - Display Suite adds a lot of options including multi-column layouts. A little bit of a learning curve, but worth it if you're going to be doing a lot of display formatting.
https://drupal.org/project/ds
if you're more of a coder, you can override the template for your node type in your theme, and control how your markup is made at that point.
============================
Resonetrics: Better Tools for Building Brands
http://resonetrics.com
http://technologyformarketers.com
http://kittenassociates.org
http://www.linkedin.com/in/sammooreatresonetrics
Yup, thats exactly what I
Yup, thats exactly what I need. Thank you!