Try this
Open Sources/Subs.php
Find:
// [Articles] button
'articles' => array(
'title' => $txt['smfarticles_menu'],
'href' => $scripturl . '?action=articles',
'show' => $context['allow_view_smfarticles'],
'icon' => '',
'sub_buttons' => array(
),
),
(or similar as I may have amended this slightly!)
Replace it with something similar to this...
// [Articles1] button
'articles1' => array(
'title' => "Photography Articles",
'href' => $scripturl . '?action=articles;cat=x ',
'show' => $context['allow_view_smfarticles'],
'icon' => '',
'sub_buttons' => array(
),
),
// [Articles2] button
'articles2' => array(
'title' => "PhotoShop Articles",
'href' => $scripturl . '?action=articles;cat=x ',
'show' => $context['allow_view_smfarticles'],
'icon' => '',
'sub_buttons' => array(
),
),
Change the text for whatever you want and change the cat=x to the number of the articles category/ies (go to each category and the id will appear in your browser url bar)
I think that will work
W