Recent comments
- Check out these two
1 week 1 day ago - It's not working for me ...
2 weeks 6 days ago - I used both drupal&okphp
4 weeks 2 days ago - iT IS VERY GOOD THAT YOU,
4 weeks 4 days ago - same problem
4 weeks 6 days ago - Some good videos / screencasts on xdebug
5 weeks 14 hours ago - Meta Tag
29 weeks 3 days ago - Re: MySQL server has gone away query
29 weeks 6 days ago - Step by step guide
30 weeks 40 min ago - Project In Mind: Need a Affordable Developer/Partner
30 weeks 2 days ago

Hello,
Hello,
I think you wnat to know from where we can change the titles on the menu header: "popular news", "upcoming news" and "submit news".
This can be doen from page.tpl.php available in sites/all/themes/spreadfirefox
at around line 67, you would find:
<?php if (arg(0) == "popular-news"){ ?>
<li class="navbut4"><span><?php print l("Popular News", 'popular-news'); ?> </span></li>
<li class="navbut3"> <span> <?php print l("Upcoming News", 'upcoming'); ?> </span> </li>
<li class="navbut3"> <span><?php print l("Submit News", 'node/add/storylink'); ?> </span></li>
Change "Popular News" to say "Popular Story". Thus, it now becomes:
<?php if (arg(0) == "popular-news"){ ?>
<li class="navbut4"><span><?php print l("Popular Stories", 'popular-news'); ?> </span></li>
<li class="navbut3"> <span> <?php print l("Upcoming Stories", 'upcoming'); ?> </span> </li>
<li class="navbut3"> <span><?php print l("Submit Stories", 'node/add/storylink'); ?> </span></li>
This is to be done for all occurance till line 88.
Let me know in case you still find it difficult or send me what you want it to be and i'll correct and mail back free of cost :)
In the future releases, I would try to make it from configurable from the interface.
Thank you,
Sudeep