News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Blue Sound

Started by Hoochie Coochie Man, May 31, 2008, 12:29:54 PM

Previous topic - Next topic

Hoochie Coochie Man


Compatibility
Only with SMF 1.1.5, 1.1.6, 1.1.7

Description
Blue Sound has a beautiful blue-white design and grey backgrond..

Installation
Useful Link
Installing themes

Support
Please use the theme thread for support with this theme.
(Please don't ask me to do the edits for you)
İnadına SMF 1.1.X

N3RVE

Looks Good!!

Weldone Hoochie Coochie Man.
Ralph "[n3rve]" Otowo
Former Marketing Co-ordinator, Simple Machines.
ralph [at] simplemachines [dot] org                       
Quote"Somewhere, something incredible is waiting to be known." - Carl Sagan

Fussilet


KompLo

Perfect theme.

I like your theme, Hoochie Coochie Man.
Hmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm

TosTos

I think this one is one of the great themes. It is plain, and very nice for eyes.

Hoochie Coochie Man

Thanks for the comments..
İnadına SMF 1.1.X

netridge

really nice theme,
are you able to add a logo in the place of the text on the left?

Dudi


Hoochie Coochie Man

Quote from: Fakdordes on June 01, 2008, 01:41:58 AM
Very nice theme ;)

Thanks..

Quote from: netridge on June 01, 2008, 01:05:24 AM
really nice theme,
are you able to add a logo in the place of the text on the left?

Yep..

index.tempalte.php
Find:
<h1 class="sitename"><a href="', $scripturl, '">', $context['forum_name'], '</a></h1>

Replace:
<img src="', $settings['images_url'], '/logo.gif" alt="" />

upload a logo to your images folder..
İnadına SMF 1.1.X

e-tikvesli


bhansel

hi!  i love this theme as well.  my forum has flashchat installed and i want to make a menu tab for it.  does someone know how i can do this?

thanks much!

ps...i had originally had this as default and installed the custom field mod and it transferred over with the theme.  i'm happy about that!  i guess if i wanted to make a change to it then i would have to do it from within the default theme.  whatever works!  thanks

Hoochie Coochie Man

Simply add this code..

   // Show the [button] button.
   echo '<li><a href="URL"><span>BUTTON NAME</span></a></li>';
İnadına SMF 1.1.X

bhansel

thanks!  but where do i put it?  i'm assuming it should go in the index.template.php file but not sure where.   :)

Hoochie Coochie Man

index.template.php

Find:
// The [calendar]!
if ($context['allow_calendar'])
echo '<li', $current_action == 'calendar' ? ' class="current_page"' : '', '><a href="', $scripturl, '?action=calendar"><span>' , $txt['calendar24'] , '</span></a></li>';


Add after:

   // Show the [button] button.
   echo '<li><a href="URL"><span>BUTTON NAME</span></a></li>';
İnadına SMF 1.1.X

bhansel

thanks!  worked perfectly.    8)

Mimmi

I love the theme, I just did a minor adjustment and I have a question:

To make the text more visible I did the following changes in the css:
/* how links behave in main tab. */
.maintab_back a:link, .maintab_back a:visited, .mirrortab_back a:link, .mirrortab_back a:visited{
color: #FFFFFF;
text-decoration: none;
}
.maintab_active_back a:visited, .maintab_active_back a:link, .mirrortab_active_back a:link, .mirrortab_active_back a:visited {
color:#000000
}

.maintab_back a:hover, .maintab_active_back a:hover,
.mirrortab_back a:hover, .mirrortab_active_back a:hover {
color: #333333;
text-decoration: none;
}



And I added a button (I'm using the Recent posts & topics extensions), but I can't make it change into gray when active. I guess it might be a global problem and have nothing to do with this theme?

This is the code in index.template.php (I attached the surrounding code as well):
// The [calendar]!
if ($context['allow_calendar'])
echo '<li', $current_action == 'calendar' ? ' class="current_page"' : '', '><a href="', $scripturl, '?action=calendar"><span>' , $txt['calendar24'] , '</span></a></li>';

// Show the Recent topics button
echo '<li', $current_action == 'recenttopics' ? ' class="current_page"' : '', '><a href="', $scripturl, '?action=recenttopics"><span>' , $txt['339'] , '</span></a></li>';
   
// the [member] list button
if ($context['allow_memberlist'])
echo '<li', $current_action == 'mlist' ? ' class="current_page"' : '', '><a href="', $scripturl, '?action=mlist"><span>' , $txt[331] , '</span></a></li>';


In index.english.php I added the last line here:
$txt[330] = 'Topics';
$txt[331] = 'Members';
$txt[332] = 'Members List';
$txt[333] = 'New Posts';
$txt[334] = 'No New Posts';
$txt[339] = 'Recent topics';

Forum-junkie and still a newbie in the world of administrating php etc... Volunteers in reproductive rights. http://www.liv-laga.no/

Hoochie Coochie Man

Did you add recenttopics to here too..?

// Work out where we currently are.
$current_action = 'home';
if (in_array($context['current_action'], array('admin', 'ban', 'boardrecount', 'cleanperms', 'detailedversion', 'dumpdb', 'featuresettings', 'featuresettings2', 'findmember', 'maintain', 'manageattachments', 'manageboards', 'managecalendar', 'managesearch', 'membergroups', 'modlog', 'news', 'optimizetables', 'packageget', 'packages', 'permissions', 'pgdownload', 'postsettings', 'regcenter', 'repairboards', 'reports', 'serversettings', 'serversettings2', 'smileys', 'viewErrorLog', 'viewmembers')))
İnadına SMF 1.1.X

Mimmi

That was it! Thanks!  :D
Forum-junkie and still a newbie in the world of administrating php etc... Volunteers in reproductive rights. http://www.liv-laga.no/

Mimmi

Hi again! I still enjoy your theme. :) But some of my users have requested a white background of the Additional smileys window we get when we hit moreSmileys. The gray and black makes it difficult to see the details of the smileys. Is this easy to change?
Forum-junkie and still a newbie in the world of administrating php etc... Volunteers in reproductive rights. http://www.liv-laga.no/

Hoochie Coochie Man

Quote from: Mimmi on September 06, 2008, 03:36:44 PM
Hi again! I still enjoy your theme. :) But some of my users have requested a white background of the Additional smileys window we get when we hit moreSmileys. The gray and black makes it difficult to see the details of the smileys. Is this easy to change?

default/Post.template.php
Find:
<body style="margin: 1ex;">

Replace:
<body style="margin: 1ex; background: #FFFFFF;">
İnadına SMF 1.1.X

Advertisement: