Author Topic: Really need some banner help guys :(  (Read 1036 times)

0 Members and 1 Guest are viewing this topic.

Offline peps1

  • New Member
  • *
  • Posts: 42
  • Karma: 47
  • Gender: Male
    • www.pipechat.tk
  • SMF Version: 1.1.13 default
Really need some banner help guys :(
« on: June 01, 2009, 08:35:39 PM »
Wonder if anyone can help me with some layout issues

my banner at the moment is all one gif but i would like to split it into two the first one left justified and the second right justified, but also a link 


I would also like to know how to center the second banner that i have posted using the global headers and footers section



talk slow, I'm simple.
« Last Edit: June 05, 2009, 02:59:32 AM by peps1 »

Offline ccbtimewiz

  • Dreamer
  • Guru
  • *
  • Posts: 1304
  • Karma: 2100
  • Gender: Male
  • $info->close();
    • Dream Portal
  • SMF Version: SMF 2.0 RC4
Re: Really need some banner help guys :(
« Reply #1 on: June 01, 2009, 08:40:51 PM »
Attach your index.template.php, and split those images, upload them to your theme's image directory, and give me their names.

Offline peps1

  • New Member
  • *
  • Posts: 42
  • Karma: 47
  • Gender: Male
    • www.pipechat.tk
  • SMF Version: 1.1.13 default
Re: Really need some banner help guys :(
« Reply #2 on: June 01, 2009, 09:10:55 PM »
The banner files are bannerleft.gif and bannerright.gif and if bannerleft to link to home, and banner right link to http://www.cornellanddiehl.com/

Oh and your a absolute star!   :dnc

did that upload the file too? ???
« Last Edit: June 01, 2009, 09:20:24 PM by peps1 »

Offline peps1

  • New Member
  • *
  • Posts: 42
  • Karma: 47
  • Gender: Male
    • www.pipechat.tk
  • SMF Version: 1.1.13 default
Re: Really need some banner help guys :(
« Reply #3 on: June 02, 2009, 02:29:34 AM »
Any chance of checking my meta tags are OK while your at it? I know its a outrageous liberty to ask, but i really am quite inept.  :ntme

Offline butchas

  • Elite Member
  • *
  • Posts: 632
  • Karma: 398
  • Illustrious key typer
    • East Coast Rolling Thunder car club
  • SMF Version: 2.0 RC5
Re: Really need some banner help guys :(
« Reply #4 on: June 02, 2009, 09:10:31 PM »
Need some smoke coming out of the dog's pipe.  Kinda sorta like Astrix's Thanksgiving turkey.   :great
Possibly a sound clip with a cough-bark.   :shckd
My mod, My site

Offline ccbtimewiz

  • Dreamer
  • Guru
  • *
  • Posts: 1304
  • Karma: 2100
  • Gender: Male
  • $info->close();
    • Dream Portal
  • SMF Version: SMF 2.0 RC4
Re: Really need some banner help guys :(
« Reply #5 on: June 02, 2009, 09:33:08 PM »
I'll look at this tomorrow morning.

Offline peps1

  • New Member
  • *
  • Posts: 42
  • Karma: 47
  • Gender: Male
    • www.pipechat.tk
  • SMF Version: 1.1.13 default
Re: Really need some banner help guys :(
« Reply #6 on: June 02, 2009, 09:46:19 PM »
Need some smoke coming out of the dog's pipe.  Kinda sorta like Astrix's Thanksgiving turkey.   :great
Possibly a sound clip with a cough-bark.   :shckd


Had a play with that


but always welcome to see submissions  :great

I'll look at this tomorrow morning.


Thank you so much ccbtimewiz, your time and effort really is apprechiated!


Offline peps1

  • New Member
  • *
  • Posts: 42
  • Karma: 47
  • Gender: Male
    • www.pipechat.tk
  • SMF Version: 1.1.13 default
Re: Really need some banner help guys :(
« Reply #7 on: June 04, 2009, 05:00:33 PM »
 :gtw ;)

Offline ccbtimewiz

  • Dreamer
  • Guru
  • *
  • Posts: 1304
  • Karma: 2100
  • Gender: Male
  • $info->close();
    • Dream Portal
  • SMF Version: SMF 2.0 RC4
Re: Really need some banner help guys :(
« Reply #8 on: June 04, 2009, 08:05:23 PM »
index.template.php

Find:
:
   echo '
   <div class="tborder" ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' style="width: 100%;"' : '', '>
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
         <tr>
            <td class="catbg" height="32">';

   if (empty($settings['header_logo_url']))
      echo '
               <span style="font-family: Verdana, sans-serif; font-size: 140%; ">', $context['forum_name'], '</span>';
   else
      echo '
               <img src="', $settings['header_logo_url'], '" style="margin: 4px;" alt="', $context['forum_name'], '" />';

   echo '
            </td>
         </tr>
      </table>';

Replace with:
:
   echo '
   <div class="tborder" ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' style="width: 100%;"' : '', '>
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
         <tr>
            <td class="catbg" height="32" align="left" width="60%">';

      echo '
               <img src="', $settings['images_url'], '/bannerright.gif" style="margin: 4px;" alt="', $context['forum_name'], '" />';

   echo '
            </td>
<td class="catbg" height="32" width="40%" align="right">
<img style="margin: 4px;" src="', $settings['images_url'], '/bannerleft.gif" alt="" />
</td>
         </tr>
      </table>';

That will make those logos for you.

And now, for the meta tags...

Find and alter:

:
<meta name="description" content="A friendly place to Chat about all things Pipe, Tobacciana and Smoking related. From Briar & Meerschaum Pipes, Cigars, Chewing Tobacco and snuff too Construction, Restoration & Maintenance.">

Offline peps1

  • New Member
  • *
  • Posts: 42
  • Karma: 47
  • Gender: Male
    • www.pipechat.tk
  • SMF Version: 1.1.13 default
Re: Really need some banner help guys :(
« Reply #9 on: June 05, 2009, 12:31:42 AM »
Thanks so much, ccbtimewizOne last little thing, How do i make bannerright.gif a link to the URL http://www.cornellanddiehl.com/ ?

Thanks for taking the time to sort that out for me!  :vic

Offline Chit-Chat ChatterBox Boss

  • Sr. Member
  • *
  • Posts: 314
  • Karma: 741
  • Gender: Male
  • SMF Helper's noob helper...I mean friendly helper!
    • Chit-Chat ChatterBox
  • SMF Version: 2.0 RC1-1
Re: Re: Really need some banner help guys :(
« Reply #10 on: June 05, 2009, 01:23:46 AM »
Thanks so much, ccbtimewizOne last little thing, How do i make bannerright.gif a link to the URL http://www.cornellanddiehl.com/[/] ?

Thanks for taking the time to sort that out for me!  :vic


This is an example of 1 of mine.
:
<a href="http://www.chitchatchatterbox.com/index.php"><img src="http://www.chitchatchatterbox.com/Banners/chitchatbanner1.jpg"  alt="Chit-Chat ChatterBox" ></a>
You can edit yours to fit yours.

In the code I put you can see the first part in it is it directing it to my website.
:
href="http://www.chitchatchatterbox.com/index.php">The second part is grabing the banner from its location.
:
<img src="http://www.chitchatchatterbox.com/Banners/chitchatbanner1.jpg" The last is putting a name on it when say you put your mouse on the banner it displays "Chit-Chat ChatterBox"
:
alt="Chit-Chat ChatterBox" >
« Last Edit: June 05, 2009, 01:26:02 AM by Chit-Chat ChatterBox Boss »

Offline peps1

  • New Member
  • *
  • Posts: 42
  • Karma: 47
  • Gender: Male
    • www.pipechat.tk
  • SMF Version: 1.1.13 default
Re: Really need some banner help guys :(
« Reply #11 on: June 05, 2009, 03:09:10 AM »
 :dnc :dnc :dnc thanks so much guys!

Offline Chit-Chat ChatterBox Boss

  • Sr. Member
  • *
  • Posts: 314
  • Karma: 741
  • Gender: Male
  • SMF Helper's noob helper...I mean friendly helper!
    • Chit-Chat ChatterBox
  • SMF Version: 2.0 RC1-1
Re: Really need some banner help guys :(
« Reply #12 on: June 05, 2009, 03:52:53 AM »
Your welcome..... even though I didn't do much  :unde I think CCB is the one deserving the credit!

Offline ccbtimewiz

  • Dreamer
  • Guru
  • *
  • Posts: 1304
  • Karma: 2100
  • Gender: Male
  • $info->close();
    • Dream Portal
  • SMF Version: SMF 2.0 RC4
Re: Really need some banner help guys :(
« Reply #13 on: June 05, 2009, 12:00:42 PM »
Find:
:
<img src="', $settings['images_url'], '/bannerright.gif" style="margin: 4px;" alt="', $context['forum_name'], '" />
Replace with:
:
<a href="', $scripturl, '"><img src="', $settings['images_url'], '/bannerright.gif" style="margin: 4px;" alt="', $context['forum_name'], '" /></a>
;)