Views Page
radner - July 26, 2008 - 17:43
I created a view to assist with displaying my "latest news" content on the front page. But I also checked the "page" button because I want drupal to generate a page with all my latest news stories.
Now I'm trying to figure out how I can theme the page drupal created that displays all of my latest news. Is there a file I need to create to customize how all my nodes are displayed on this new page? I want to apply some css to the stories, titles, etc. Just not sure where to start. Thanks!

if you just want to add some
if you just want to add some css, you can add it to the style.css file for your theme. You can either examine the source of the page to see what classes/ids are available, or use the firebug plugin for Firefox (highly recommended, you can try out css right from the browser window).
If you want to do more than just add some css, see my other comment about theming views.
===
"Give a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime." -- Lao Tzu
"God helps those who help themselves." -- Benjamin Franklin
"Search is your best friend." -- Worldfallz
Okay that helps me some, but
Okay that helps me some, but what if I want to add new divs and such. I can edit existing css, but let's say I want to have other things on the page, or not have the right sidebar display. Adding is great, but I want to take stuff off too. I just wish there was an actual node.tpl.php for this page that views created so I could really go all out and customize it.