Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Theme Site Themes => Topic started by: Hoochie Coochie Man on May 31, 2008, 12:29:54 PM

Title: Blue Sound
Post by: Hoochie Coochie Man on May 31, 2008, 12:29:54 PM


BLUE SOUND
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fcustom.simplemachines.org%2Fthemes%2Findex.php%2Faction%2Cdownload%2Flemma%2C713%2Fimage%2Cthumb&hash=0f59d92058df390af9a317f8a98683c2bead84c7)

By Hoochie Coochie Man (http://custom.simplemachines.org/themes/index.php?action=profile;u=118828)


Link to Theme (http://custom.simplemachines.org/themes/index.php?lemma=713) | Support Topic (http://www.simplemachines.org/community/index.php?topic=242176.0) | Demo (http://www.smfthemes.org/index.php?theme=439)


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 (http://www.simplemachines.org/community/index.php?topic=11481.0)

Support
Please use the theme thread for support with this theme.
(Please don't ask me to do the edits for you)
Title: Re: Blue Sound
Post by: N3RVE on May 31, 2008, 12:35:50 PM
Looks Good!!

Weldone Hoochie Coochie Man.
Title: Re: Blue Sound
Post by: Fussilet on May 31, 2008, 01:06:42 PM
good work bro ;)
Title: Re: Blue Sound
Post by: KompLo on May 31, 2008, 01:32:29 PM
Perfect theme.

I like your theme, Hoochie Coochie Man.
Title: Re: Blue Sound
Post by: TosTos on May 31, 2008, 05:50:55 PM
I think this one is one of the great themes. It is plain, and very nice for eyes.
Title: Re: Blue Sound
Post by: Hoochie Coochie Man on May 31, 2008, 06:09:57 PM
Thanks for the comments..
Title: Re: Blue Sound
Post by: 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?
Title: Re: Blue Sound
Post by: Dudi on June 01, 2008, 01:41:58 AM
Very nice theme ;)
Title: Re: Blue Sound
Post by: Hoochie Coochie Man on June 01, 2008, 05:21:57 PM
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..
Title: Re: Blue Sound
Post by: e-tikvesli on June 02, 2008, 09:20:16 AM
You are perfect. ;)
Title: Re: Blue Sound
Post by: bhansel on June 08, 2008, 12:55:09 PM
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
Title: Re: Blue Sound
Post by: Hoochie Coochie Man on June 08, 2008, 05:50:39 PM
Simply add this code..

   // Show the [button] button.
   echo '<li><a href="URL"><span>BUTTON NAME</span></a></li>';
Title: Re: Blue Sound
Post by: bhansel on June 08, 2008, 07:34:47 PM
thanks!  but where do i put it?  i'm assuming it should go in the index.template.php file but not sure where.   :)
Title: Re: Blue Sound
Post by: Hoochie Coochie Man on June 09, 2008, 01:30:40 AM
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>';
Title: Re: Blue Sound
Post by: bhansel on June 10, 2008, 10:08:30 PM
thanks!  worked perfectly.    8)
Title: Re: Blue Sound
Post by: Mimmi on June 15, 2008, 04:25:08 PM
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';

Title: Re: Blue Sound
Post by: Hoochie Coochie Man on June 15, 2008, 04:50:41 PM
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')))
Title: Re: Blue Sound
Post by: Mimmi on June 17, 2008, 02:21:11 PM
That was it! Thanks!  :D
Title: Re: Blue Sound
Post by: 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?
Title: Re: Blue Sound
Post by: Hoochie Coochie Man on September 06, 2008, 04:06:55 PM
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;">
Title: Re: Blue Sound
Post by: Mimmi on September 06, 2008, 04:26:36 PM
That was easy! Terrific! Thanks!
Title: Re: Blue Sound
Post by: |-noodle-| on September 23, 2008, 09:40:51 AM
i know this is old, but can this be made compatible with TP?
Title: Re: Blue Sound
Post by: ivnj on September 28, 2008, 07:26:42 PM
I also like this one.  But is there a way too add an HR between forums.