Customizing SMF > Theme Site Themes

blu

<< < (2/3) > >>

Orangine:
thank you for kind words :)

Mariano:
Looks awesome. Thanks!

damitto:
Great theme!!!

Thanks for all!!!  :D ;D :D ;D

I would like add more icons at the top as the Facebook´s icon, but in my case put Youtube, e-mail and telephone as a means of contact. It´s possible, how?

Orangine:
if you want to add another item there, open Settings.template.php and search for:

--- Code: ---      array(
         'id' => 'blu_fb',
         'label' => $txt['blu_fb'],
         'description' => $txt['blu_fb_desc'],
         'type' => 'text',
      ),
--- End code ---
add after that:

--- Code: ---      array(
         'id' => 'blu_youtube',
         'label' => $txt['blu_youtube'],
         'description' => $txt['blu_youtube_desc'],
         'type' => 'text',
      ),
--- End code ---

also, open languages/ThemeStrings.php and add the following code before ?>:

--- Code: ---$txt['blu_youtube'] = 'Custom youtube link';
$txt['blu_youtube_desc'] = 'Enter your Youtube address link in the header area. Leave blank if you do not want Youtube icon to appear.';
$txt['blu_youtube_alt'] = 'View our Youtube channel';
--- End code ---

and at the end, open your index.template.php and search for:

--- Code: ---echo '
', (!empty($settings['blu_fb'])) ? '<li><a href="'.$settings['blu_fb'].'"><img src="'.$settings['theme_url'].'/images/theme/fb.png" alt="'.$txt['blu_fb_alt'].'"/></a></li>' : '';

--- End code ---
add after that:

--- Code: ---echo '
', (!empty($settings['blu_youtube'])) ? '<li><a href="'.$settings['blu_youtube'].'"><img src="'.$settings['theme_url'].'/images/theme/youtube.png" alt="'.$txt['blu_youtube_alt'].'"/></a></li>' : '';

--- End code ---
and so on and so forth for more

remember to add additional icons to your /images/theme/ folder

Hristo:
Thank you for the theme! I really like it. Unless SMF 2.1 is released until the end of the year (which won't happen) this will be the theme for my forum (in a few color variants). Thanks again!

There is one small problem I would like to get rid of. The category bars In Opera browser does not get rounded corners at the right side. I tried to fix it myself, but only managed to fix the top right corner, obviously my knowledge in css is too basic  :)

Could you please tell me how to fix this?

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version