Hi, everyone. I recently use drupal to develop my website. However, where should I change in the source code to modify the content of my default page? Thanks guys.
I'm trying to draw a thin box around nodes in the teaser list when
the user browses the taxonomy tree. But I always end up drawing a box
around the nodes even when they're displayed in normal view mode.
For example, if I just add a 'border: 1px solid #000' for the .node definition in my theme's style.css.
I also tried overriding the page template (eg. node-page.tpl.php). However, it appears that this same template is used for both the teaser list in the taxonomy browser as well as for the full view.
I am trying to change the node layout on my site to make it look like the node layout on eg. http://piecesinc.com, where all the node elements are displayed next to the image on the node listing page.
To accomplish that, I try to access the properties of the node object directly instead of the PHPTemplate variables in my node.tpl.php, so I use print $node->images[thumbnail]; instead of print $picture.
I have been working on my own theme and uploaded a .theme file with FTP while that theme was the default- BAD IDEA.
Now there is no theme selected and i cannot see any themes or menus on the administrators - themes - page. is there any manual override to reset the theme in drupal?
I cannot believe that I am the only person who has ever made this problem for myself?