WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Banner night and day Empty Banner night and day Tue Aug 03, 2010 7:14 pm

Emilio

Emilio
Registered Member
Registered Member
I wanna add something special to my forum but don't know if its possible...
Like a banner that change every 12 hours ...
Like its night and day Very Happy

http://www.graphilicious.forumotion.Com

2Banner night and day Empty Re: Banner night and day Tue Aug 03, 2010 7:42 pm

Unknown Data

Unknown Data
Registered Member
Registered Member
Hello there! (:

Try this out (Remember to edit the DAY_BANNER.GIF and NIGTH_BANNER.GIF):
Code:

  <head>
<script language="JavaScript">
<!--

function changeBanner(){

t = new Date();
hour = t.getHours();
if (hour >= 18 || hour < 6) {
document.getElementById("banner").src = "NIGHT_BANNER.GIF";
}
}


//-->
</script>
  </head>

  <body onLoad="changeBanner();">
<img id="banner" src="DAY_BANNER.GIF">
  </body>



http://woops.dk

3Banner night and day Empty Re: Banner night and day Thu Aug 05, 2010 9:55 pm

Emilio

Emilio
Registered Member
Registered Member
where i place it?
CSS / TEMPLATES?

http://www.graphilicious.forumotion.Com

4Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 12:22 am

Unknown Data

Unknown Data
Registered Member
Registered Member
That would be in the templates.
But remember to replace it with the original banner place. (;

http://woops.dk

5Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 12:40 am

Emilio

Emilio
Registered Member
Registered Member
well uhmm , where exactly in templates? can you gimme a demo to?

http://www.graphilicious.forumotion.Com

6Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 12:59 am

RockerMan

RockerMan
Technician
Technician
That script tag is not valid...

<script type="text/javascript">

http://www.graphics-post.com/

7Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 1:02 am

Unknown Data

Unknown Data
Registered Member
Registered Member
Try this out. (:

Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html id="min-width"  xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="{L_LANG_HTML}" lang="{L_LANG_HTML}" dir="{S_CONTENT_DIRECTION}">
<head>
   <!-- BEGIN meta_emulate_ie7 -->
   <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
   <!-- END meta_emulate_ie7 -->
   <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
   <meta http-equiv="Content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
   <meta http-equiv="content-script-type" content="text/javascript" />
   <meta http-equiv="content-style-type" content="text/css" />
   {META_FAVICO}
   {META}
   <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
   {T_HEAD_STYLESHEET}
   {CSS}
   <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
   <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
   <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
   <!-- BEGIN switch_fb_login -->
   <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js"></script>
   <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
   <!-- END switch_fb_login -->
   <!-- BEGIN switch_ticker -->
   <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
   <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
   <!-- END switch_ticker -->

   <!-- BEGIN switch_ticker_new -->
   <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
   <script type="text/javascript">
   //<![CDATA[

   /* Definir le sens de direction en fonction du panneau admin */
   var tickerDirParam = "{switch_ticker.DIRECTION}";
   var slid_vert = false;
   var auto_dir  = 'next';
   var h_perso = parseInt({switch_ticker.HEIGHT});

   switch( tickerDirParam )
   {
      case 'top' :
         slid_vert = true;
         break;

      case 'left':
         break;

      case 'bottom':
         slid_vert = true;
         auto_dir  = 'prev';
         break;

      case 'right':
         auto_dir  = 'prev';
         break;

      default:
         slid_vert = true;
   }

   $(document).ready(function() {

      var width_max  = $('ul#fa_ticker_content').width();
      var width_item = Math.floor(width_max / {switch_ticker.SIZE});

      if (width_max > 0)
      {
         $('#fa_ticker_content').css('display','block');

         $('ul#fa_ticker_content li').css('float','left').css('list-style','none').width(width_item).find('img').each(function () {
            if ($(this).width() > width_item)
            {
            var ratio      = $(this).width() / width_item;
            var new_height = Math.round($(this).height() / ratio);
            $(this).height(new_height).width(width_item);
            }
         });

         if (slid_vert)
          {
            var height_max = h_perso;

             $('ul#fa_ticker_content li').each( function () {
               if ($(this).height() > height_max)
               {
                  height_max = $(this).height();
               }
            } );

             $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
             $('ul#fa_ticker_content li').height(height_max);
          }

         $('#fa_ticker_content').jcarousel({
              vertical: slid_vert,
            wrap: 'circular',
             auto: {switch_ticker.STOP_TIME},
             auto_direction: auto_dir,
              scroll: 1,
              size: {switch_ticker.SIZE},
              height_max: height_max,
              animation: {switch_ticker.SPEED}
          });
      }
      else
      {
         $('ul#fa_ticker_content li:not(:first)').css('display','none');
          $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
      }
   });
   //]]>
   </script>
   <!-- END switch_ticker_new -->

   <script type="text/javascript">
   //<![CDATA[
   $(document).ready(function(){
      <!-- BEGIN switch_enable_pm_popup -->
         pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
         pm.focus();
      <!-- END switch_enable_pm_popup -->
      <!-- BEGIN switch_report_popup -->
         report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
         report.focus();
      <!-- END switch_report_popup -->
      <!-- BEGIN switch_ticker -->
         ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED}, '{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
      <!-- END switch_ticker -->
   });

   <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = false, logInBackgroundClass = false;
   <!-- END switch_login_popup -->
   //]]>
   </script>
   {GREETING_POPUP}
   <!-- BEGIN hitskin_preview -->
   <style type="text/css">
   #hitskin_preview {
   margin: 0; padding: 0;
   position: fixed;
   top: 0; left: 0;
   width: 100%;
   height: 65px;
   background: url('http://2img.net/i/fa/hitskin/hitskin_bar.png') repeat-x left -15px;
   color: #fff;
   }

   * html #hitskin_preview { /* Fix for IE6 since it doesn't implement fixed positionning */
      position: absolute;
      top:expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop : document.body.scrollTop);
      z-index: 2;
      background: transparent url('http://2img.net/i/fa/hitskin/hitskin_bar-ie6.gif') repeat-x left -15px;
   }

   * html { /* Gunlaug's Speed fix for the above positionning fix. Sorry for the fix for the fix */
    background: #fff url(foo) fixed;
    }

   #hitskin_preview h1 {
      float: left;
      margin: 3px 0 0 0;
      padding: 0 0 0 10px;
      font: italic normal 25px Arial,sans serif;
      color: #fff;
   }
   #hitskin_preview h1 img {
      vertical-align: middle;
   }
   #hitskin_preview em {
      color: #7CBA2C;
      font-weight: bold;
   }
   #hitskin_preview a {
   color: #fff;
   }
   #hitskin_preview a:hover {
   text-decoration: underline;
   }

   #hitskin_preview .content {
      text-align: right;
   }

   #hitskin_preview .content p {
      margin: 4px 1em 0px 1em;
      font-size: 13px;
      line-height: 1.8em;
      color: #fff;
      font-weight: bold;
   }
   #hitskin_preview .content p span {
      font-weight: normal;
      font-size: 0.8em;
   }
   body {
      margin-top: 40px !important;
   }
   {hitskin_preview.HITSKIN_RTL_CSS}
   </style>
   <!-- END hitskin_preview -->

   <!-- BEGIN switch_ticker_new -->
   <style>
   .jcarousel-skin-tango .jcarousel-item {
       text-align:center;
       width: 10px;
   }

   .jcarousel-skin-tango .jcarousel-item-horizontal {
       margin-right: {switch_ticker.SPACING}px;
   }

   .jcarousel-skin-tango .jcarousel-item-vertical {
       margin-bottom: {switch_ticker.SPACING}px;
   }
   </style>
   <!-- END switch_ticker_new -->
</head>

<body>
   <!-- BEGIN hitskin_preview -->
   <div id="hitskin_preview" style="display: block;">
      <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.com</h1>
      <div class="content">
         <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
         </p>
      </div>
   </div>
   <!-- END hitskin_preview -->

   <!-- BEGIN switch_login_popup -->
   <div id="login_popup" class="module main">
      <div id="login_popup_title" class="main-head">
         <div class="h3">{SITENAME}</div>
      </div>
      <div class="main-content">
         {LOGIN_POPUP_MSG}
         <div id="login_popup_buttons">
            <form action="{S_LOGIN_ACTION}" method="get">
               <input type="submit" class="button2" value="{L_LOGIN}" />
               <input type="button" class="button2" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
               <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
            </form>
         </div>
      </div>
   </div>
   <!-- END switch_login_popup -->

   <a id="top" name="top" accesskey="t"></a>
   <div class="minwidth_IE">
      <div class="layout_IE">
         <div class="container_IE">
            <div class="pun">
               <div id="pun-intro" class="clearfix">
                  <a href="{U_INDEX}" id="pun-logo">
  <head>
<script language="JavaScript">
<!--

function changeBanner(){

t = new Date();
hour = t.getHours();
if (hour >= 18 || hour < 6) {
document.getElementById(&quot;banner&quot;).src = "NIGHT_BANNER.GIF";
}
}


//-->
</script>
  </head>

  <body onLoad="changeBanner();">
<img id="banner" src="DAY_BANNER.GIF">
  </body>

                  </a>

                  <!-- BEGIN switch_h1 -->
                  <div id="pun-title">{switch_h1.MAIN_SITENAME}</div>
                  <!-- END switch_h1 -->

                  <!-- BEGIN switch_desc -->
                  <p id="pun-desc">{switch_desc.SITE_DESCRIPTION}</p>
                  <!-- END switch_desc -->
               </div>
               <div id="pun-head">
                  <div id="pun-navlinks">
                     <ul class="clearfix">
                        <li>{GENERATED_NAV_BAR}</li>
                     </ul>
                  </div>
               </div>

               <!-- BEGIN switch_ticker_new -->
               <div id="fa_ticker_block" style="padding-top:4px;">
                  <div class="module main">
                     <div class="main-content clearfix">
                        <div id="fa_ticker_container">
                           <ul id="fa_ticker_content"  class="jcarousel-skin-tango" style="display: none;width: 100%;">
                              <!-- BEGIN ticker_row -->
                              <li>{switch_ticker.ticker_row.ELEMENT}</li>
                              <!-- END ticker_row -->
                           </ul>
                        </div>
                     </div>
                  </div>
               </div>
               <!-- END switch_ticker_new -->

               <!-- BEGIN switch_ticker -->
               <div id="fa_ticker_block" style="padding-top:4px;">
                  <div class="module main">
                     <div class="main-content clearfix">
                        <div id="fa_ticker_container">
                           <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
                              <div class="fa_ticker_content">
                                 <!-- BEGIN ticker_row -->
                                 <div>{switch_ticker.ticker_row.ELEMENT}</div>
                                 <!-- END ticker_row -->
                              </div>
                           </div>
                        </div>
                     </div>
                  </div>
               </div>
               <!-- END switch_ticker -->

               <div id="page-body">
                  <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                     <div id="outer-wrapper">
                        <div id="wrapper">
                           <div id="container">
                              <div id="content">
                                 <div id="{ID_LEFT}">
                                    <!-- BEGIN giefmod_index1 -->
                                    {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                    <!-- END giefmod_index1 -->
                                 </div>
                                 <div id="main">
                                    <div id="main-content">

<!-- BEGIN html_validation -->
                                    </div>
                                 </div>
                              </div>
                           </div>
                        </div>
                     </div>
                  </div>
               </div>
            </div>
         </div>
      </div>
   </div>
</body>
</html>
<!-- END html_validation -->
Then remember to find this part, and edit DAY_BANNER.GIF and NIGHT_BANNER.GIF (:
Code:
  <head>
<script language="JavaScript">
<!--

function changeBanner(){

t = new Date();
hour = t.getHours();
if (hour >= 18 || hour < 6) {
document.getElementById(&quot;banner&quot;).src = "NIGHT_BANNER.GIF";
}
}


//-->
</script>
  </head>

  <body onLoad="changeBanner();">
<img id="banner" src="DAY_BANNER.GIF">
  </body>

http://woops.dk

8Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 1:49 am

Emilio

Emilio
Registered Member
Registered Member
Don't get it where to place it exactly

http://www.graphilicious.forumotion.Com

9Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 9:40 am

Joel

Joel
Registered Member
Registered Member
Unknown Data, Samurai is using a Forumotion forum, like Webartz. He wants to know where do place the given codes.

Homepage message? CSS? Or he'll have to do template editing?

http://www.advertisehotspot.info/

10Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 4:10 pm

Unknown Data

Unknown Data
Registered Member
Registered Member
Ohh.. I think you only can do it by template editing, if you want it to switch place with the default banners place.

Where do you exactly want it to appear? Smile

http://woops.dk

11Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 4:58 pm

Emilio

Emilio
Registered Member
Registered Member
Well , Unknown data you know on JV the header image with the animals , the palm trees and yu see the yellow sun with birds on it thats the days banner
i can make one with the moon as night banner

http://www.graphilicious.forumotion.Com

12Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 5:33 pm

Unknown Data

Unknown Data
Registered Member
Registered Member
I think you only can do it by template editing. Which version do you use?

http://woops.dk

13Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 5:46 pm

Emilio

Emilio
Registered Member
Registered Member
PUNBB

http://www.graphilicious.forumotion.Com

14Banner night and day Empty Re: Banner night and day Fri Aug 06, 2010 5:53 pm

Unknown Data

Unknown Data
Registered Member
Registered Member
Template -> General Admin. -> overall_header_new -> Find this peace (almost down below):
Code:
<a href="{U_INDEX}" id="pun-logo"><img src="{LOGO}" alt="{L_INDEX}" /></a>
Delete so it now look like this:
Code:
<a href="{U_INDEX}" id="pun-logo"></a>
Insert the code I gave you bettween the <a> tags.

http://woops.dk

15Banner night and day Empty Re: Banner night and day Tue Aug 10, 2010 2:25 pm

Guest


Guest
nice one Uknown Data!I will use it to my site Smile

16Banner night and day Empty Re: Banner night and day Sun Aug 22, 2010 7:58 pm

Joel

Joel
Registered Member
Registered Member
So i guess this is solved Samurai?

http://www.advertisehotspot.info/

17Banner night and day Empty Re: Banner night and day Mon Aug 23, 2010 1:03 am

Emilio

Emilio
Registered Member
Registered Member
yes xd

http://www.graphilicious.forumotion.Com

18Banner night and day Empty Re: Banner night and day Mon Aug 23, 2010 10:47 am

ankillien

ankillien
Administrator
Administrator
Solved | Locked

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum