Back to top

Autore Topic: Personalizzare template dj  (Letto 3386 volte)

Offline mobileadv

  • Esploratore
  • **
  • Post: 92
  • Sesso: Maschio
    • Mostra profilo
Personalizzare template dj
« il: 24 Set 2009, 12:47:09 »
Nel personalizzare il template di cui all'oggetto e che allego in copia, ho eliminato il logo di Joomla "because open source matters" lasciando il campo cerca.
Come faccio a far "salire" tutto il template ed eliminare quindi la parte in bianco?
Spero di risolvere almeno questa. ;D
Grazie.
 

[allegato vecchio più di un anno eliminato automaticamente]
« Ultima modifica: 25 Set 2009, 16:22:11 da mobileadv »

Offline mobileadv

  • Esploratore
  • **
  • Post: 92
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #1 il: 25 Set 2009, 16:23:28 »
Ma perchè a me non risponde mai nessuno?  ::)
Forse faccio domande troppo banali?

Offline sudoku

  • Global Moderator
  • Instancabile
  • ********
  • Post: 4077
  • Sesso: Maschio
  • Non serve essere alti. basta essere all'altezza
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #2 il: 25 Set 2009, 16:32:58 »
forse perchè poni le domande in maniera che non sia possibile rispondere.

a)template "dj" ce ne sono una decina. almeno dire da dovelo hai preso....

b)se sei in remoto dai un link

Le immagini come possiamo gestirle?
Joomla non è una soluzione, é un metodo
http://www.BreezingTest.altervista.org

Offline Beta

  • Nuovo arrivato
  • *
  • Post: 49
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #3 il: 25 Set 2009, 17:06:51 »
Installati FireBug http://getfirebug.com/ su Mozilla Firefox ed analizza il div interessato. Non pubblicando il link non saprei dirti se lo puoi eliminare o solo ridimensionare
http://www.ntmedia.it  - Noi comunichiamo e tu??

Offline mobileadv

  • Esploratore
  • **
  • Post: 92
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #4 il: 25 Set 2009, 17:13:07 »
ooops è vero avete ragione.
Dunque il template è dj-0013, preso dal calderone  ;)

Offline mobileadv

  • Esploratore
  • **
  • Post: 92
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #5 il: 25 Set 2009, 17:15:47 »
Il sito è in remoto ma lo screenshot è quello riportato al primo post.
« Ultima modifica: 25 Set 2009, 17:46:01 da mobileadv »

Offline mobileadv

  • Esploratore
  • **
  • Post: 92
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #6 il: 25 Set 2009, 17:17:00 »
la mia idea è quella di mettere il file swf al posto del tizio con le mani al cielo

Offline mobileadv

  • Esploratore
  • **
  • Post: 92
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #7 il: 25 Set 2009, 17:18:34 »
E questo è il file index.php
<?php
/*--------------------------------------------------------------
# December 2008 (for Joomla 1.5)
# Copyright (C) design-joomla.eu All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.design-joomla.eu
# Support: joomla-monster@design-joomla.eu
---------------------------------------------------------------*/
defined( '_JEXEC' ) or die( 'Restricted access' );
$url = clone(JURI::getInstance());
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<jdoc:include type="head" />
<?php
     require( "templates/".$this->template . "/menu.php");
     require( "templates/".$this->template . "/cssloader.php");?>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/editor.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template_<?php echo $font_color;?>.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/favicon.ico"/>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/general_<?php echo $font_color;?>.css" type="text/css" />
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/css/horizontal_<?php echo $font_color;?>.css" rel="stylesheet" type="text/css"/>
<script language="javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/animation.js" type="text/javascript"></script>
<script language="javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/cssmenus.js" type="text/javascript"></script>
<!--[if lte IE 6]>
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/ieonly.css" rel="stylesheet" type="text/css" />
<![endif]-->
<?php
if($this->countModules('left and right') == 0) $contentwidth = "100";
if($this->countModules('left or right') == 1) $contentwidth = "80";
if($this->countModules('left and right') == 1) $contentwidth = "60";
?>
<!--<?php
if($this->get('template_width') == 0) { ?>
<style type="text/css"> #wrap {width:960px;} </style>
<?php } ?>
<?php
if($this->get('template_width') == 1) { ?>
<style type="text/css"> #wrap {width:960px;} </style>
<?php } ?>
<?php
if($this->get('template_width') == 2) { ?>
<style type="text/css"> #wrap {min-width:760px;max-width:960px;width: auto !important;width:960px;} </style>
<?php } ?>-->
</head>
<body class="<?php echo $font_s; ?>">
<div id="all" align="center">
<div id="wrap<?php echo "_".$width; ?>">
 <div id="logo_search" class="clearfix">
  <div id="search">
      <jdoc:include type="modules" name="user4"/>
      </div>
        </div>
   <object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" height="300" width="960" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param value="Portale.swf" name="movie" /><param value="high" name="quality" /><param value="#FFFFFF" name="bgcolor" />
<EMBED
            src="/Portale.swf"
            quality=high bgcolor=#FFFFFF  WIDTH="960" HEIGHT="300"
            ALIGN="" TYPE="application/x-shockwave-flash"
            PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</object>
   <div id="topmenu_icons" class="clearfix">
      <div id="icons">
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?width=narrow" title="Narrow width"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/images/narrow.gif" alt="n" border="0"/>[/url]
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?width=wide" title="Wide width"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/wide.gif" alt="w" border="0"/>[/url]&nbsp;&nbsp;&nbsp;
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?font_color=green" title="Wide width"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/green.gif" alt="w" border="0"/>[/url]
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?font_color=default" title="Wide width"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/blue.gif" alt="w" border="0"/>[/url]
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?font_color=orange" title="Wide width"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/orange.gif" alt="w" border="0"/>[/url]
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?font_color=red" title="Wide width"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/red.gif" alt="w" border="0"/>[/url]
      </div>
      <div align="right">
      <div id="topmenu"><?php mosShowListMenu('topmenu');?></div>
      </div>
   </div>
   <div id="baner">
   <?php if($this->countModules('advert1')) { ?>
      <jdoc:include type="module" name="advert1" style="xhtml" />
   <?php } else{ ?>
      <img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/baner.jpg" alt="baner" border="0"/>
   <?php }?>
      <?php if($this->countModules('advert2')) : ?>
     <div id="baner_module">
      <jdoc:include type="modules" name="advert2" />
     </div>
  <?php endif; ?>
   </div>
   <div id="path_fonts" class="clearfix">
      <div id="path">You are here:&nbsp;&nbsp;
      <jdoc:include type="module" name="breadcrumbs" />
      </div>
      <div id="fonts">
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?font_s=large" title="Font size"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/<?php echo $font_color;?>/big_font.gif" alt="large" border="0"/>[/url]
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?font_s=smaller" title="Font size"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/<?php echo $font_color;?>/small_font.gif" alt="small" border="0"/>[/url]
      <a href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/csschanger.php?font_s=default" title="Font size"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/<?php echo $font_color;?>/default_font.gif" alt="default" border="0"/>[/url]
      
      </div>
   </div>
   <div id="contener" class="clearfix">
  <?php if($this->countModules('left')) : ?>
  <div id="sidebar">
      <jdoc:include type="modules" name="left" style="xhtml" />
  </div>
  <?php endif; ?>
  <div id="content<?php echo $contentwidth; ?>">
    <div class="inside">
      <jdoc:include type="message" />      
      <jdoc:include type="component" style="xhtml" />
    </div>
  </div>
  <?php if($this->countModules('right')) : ?>
  <div id="sidebar-2">
      <jdoc:include type="modules" name="right" style="xhtml" />
  </div>
  <?php endif; ?>
   </div>
   <div id="footer" class="clearfix">
      <div id="xhtml_css">
      
« Ultima modifica: 25 Set 2009, 17:44:33 da mobileadv »

Offline 56francesco

  • Fuori controllo
  • *
  • Post: 29585
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #8 il: 25 Set 2009, 17:53:46 »
scusa a che serve pubblicare tutto il codice, lo fa qualcun altro che tu sappia?

(uso XP perchè win98 non si installa) 
PS: non sono un dipendente dello sbonzor quindi è necessario un "per favore" alla richiesta e un "grazie" alla risposta, sempre! PPS: non scrivo mai per primo in MP, in caso contrario chiedimi una conferma, Grazie.

Offline mobileadv

  • Esploratore
  • **
  • Post: 92
  • Sesso: Maschio
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #9 il: 25 Set 2009, 19:07:16 »
scusa a che serve pubblicare tutto il codice, lo fa qualcun altro che tu sappia?

No, in effetti. O almeno credo  ::)
Taglio?

Offline sudoku

  • Global Moderator
  • Instancabile
  • ********
  • Post: 4077
  • Sesso: Maschio
  • Non serve essere alti. basta essere all'altezza
    • Mostra profilo
Re:Personalizzare template dj
« Risposta #10 il: 25 Set 2009, 21:33:33 »
il layout del template si gestisce al 90% dal file template.css. Ti prego però non postarlo tutto...

Citazione
Il sito è in remoto ma lo screenshot è quello riportato al primo post.
E questo che significa? se sei in remoto manda il link del sito.

Citazione
la mia idea è quella di mettere il file swf al posto del tizio con le mani al cielo
Una domanda un post sennò si fa confusione. Per il flash header il pulsante ricerca nel forum ti suggerirà circa 100 discussioni e già risolte....

Joomla non è una soluzione, é un metodo
http://www.BreezingTest.altervista.org

 



Web Design Bolzano Kreatif