Hello Guest
No Avatar
Sign In to Remove
Posts: 
2
Reputation: 
1
Posted: October 11, 2012, 11:13 PM  -- Last Edit: November 20, 2014, 10:10 PM by MLM
  • Group: Member
Hi ,

I've just installed a clean Simple Machines forum. Then I installed the vertex theme. But I'm not able to insert my logo or even a slogan. No matter what I try, the "VERTEX" text is displayed in the banner .

Best regards
Posts: 
400
Reputation: 
20
Posted: October 12, 2012, 2:12 AM
  • Group: Administrator
  • AIM: mlm@visualpulse.net
  • deviantART: MadLittleMods
  • Photobucket: MadLittleMods
hmm, I guess I forgot to add the theme setting in but all you have to do is overwrite this file:
Code: [Select]
images/vertex_image/banner_logo.png
You could also add this little snippet to your index.template.php to get the setting to work.

Replace:
Code: [Select]
<img src="', $settings['images_url'] ,'/vertex_image/banner_logo.png" alt="" />
With:
Code: [Select]
', empty($context['header_logo_url_html_safe']) ? '<img src="'. $settings['images_url'] .'/vertex_image/banner_logo.png" alt="' . $context['forum_name'] . '" />' : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />' ,'
<3 Nerve, Sk8, Labradoodle, Austin
Posts: 
2
Reputation: 
1
Posted: October 12, 2012, 12:42 PM
  • Group: Member
Thanks!

I'll give it a try. I have already replaced the logo file, and that works. I just thought i would be more convenient to change it in the admin settings.

Regards
Eddie