- Postagens: 7
- Obrigados Recebidos: 0
topo em flash no template
- christianosr
-
Autor do Tópico
- Offline
- JCB! Novato
-
Menos
Mais
15 anos 5 meses atrás #30082
por christianosr
christianosr created the topic: topo em flash no template
estou com problemas para colocar meu topo em lash!! ja procurei e varios sites e as dicas que recebo nao funcionam!! coloquei tag, modulos, tipos de aruivos e nada!! da uma olhada neste site seria assim !! <!-- w -->[url=http://www.walmar.art.br!" onclick="window.open(this.href);return false;]www.walmar.art.br![/url]<!-- w -->! que poder me dar uma dica passo-a-passo eu ficaria muito contente!! valeu!!
Please Entrar ou Registrar to join the conversation.
- Rickschaves
-
- Offline
- JCB! Hero
-
15 anos 5 meses atrás #30092
por Rickschaves
Rickschaves replied the topic: Re: topo em flash no template
Oi amigo, você tem basicamente duas opções, uma é colocar o código para adicionar um arquivo em flash direto no php da sua template, como se faria com qualquer html. Outra é colocar um módulo pra carregar o flash, caso sua template tenha o uma posição de módulo no header.
Diz aí o que conseguiu...
Diz aí o que conseguiu...
Please Entrar ou Registrar to join the conversation.
- badtenvo
-
- Offline
- JCB! Colaborador
-
15 anos 5 meses atrás #30133
por badtenvo
[i:3um02383][b:3um02383]Os Mais Belos Site do Brasil http:///www.vika33.com.br. Confira, produtos excelentes e otimos preços![/b:3um02383][/i:3um02383]
badtenvo replied the topic: Re: topo em flash no template
Estou com um template aqui e não consigo colocar o flash no topo segue template
<?php
defined('_JEXEC') or die('Restricted access'); // no direct access
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'functions.php';
$document = isset($this) ? $this : null;
$baseUrl = $this->baseurl;
$templateUrl = $this->baseurl . '/templates/' . $this->template;
artxComponentWrapper($document);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ;
<html xmlns=" www.w3.org/1999/xhtml" ; xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="<?php echo $templateUrl; ?>/css/template.css" />
<!--[if IE 6]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie6.css" type="text/css" media="screen" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
<script type="text/javascript" src="<?php echo $templateUrl; ?>/script.js"></script>
</head>
<body>
<div class="PageBackgroundGradient"></div>
<div class="Main">
<div class="Sheet">
<div class="Sheet-tl"></div>
<div class="Sheet-tr"></div>
<div class="Sheet-bl"></div>
<div class="Sheet-br"></div>
<div class="Sheet-tc"></div>
<div class="Sheet-bc"></div>
<div class="Sheet-cl"></div>
<div class="Sheet-cr"></div>
<div class="Sheet-cc"></div>
<div class="Sheet-body">
<div class="Header">
<div class="Header-png"></div>
<div class="Header-jpeg"></div>
<div class="logo">
<h1 id="name-text" class="logo-name"><a href="<?php echo $baseUrl; ?>/"></a></h1>
<div id="slogan-text" class="logo-text"></div>
</div>
</div>
<jdoc:include type="modules" name="user3" />
<jdoc:include type="modules" name="banner1" style="xhtml" />
<?php echo artxPositions($document, array('top1', 'top2', 'top3'), 'artblock'); ?>
<div class="contentLayout">
<div class="<?php echo artxCountModules($document, 'right') ? 'content' : 'content-wide'; ?>">
<?php
echo artxModules($document, 'banner2', 'xhtml');
if (artxCountModules($document, 'breadcrumb'))
echo artxPost(null, artxModules($document, 'breadcrumb'));
echo artxPositions($document, array('user1', 'user2'), 'artpost');
echo artxModules($document, 'banner3', 'xhtml');
?>
<?php if (artxHasMessages()) : ?><div class="Post">
<div class="Post-body">
<div class="Post-inner">
<div class="PostContent">
<jdoc:include type="message" />
</div>
<div class="cleared"></div>
</div>
</div>
</div>
<?php endif; ?>
<jdoc:include type="component" />
<?php echo artxModules($document, 'banner4', 'xhtml'); ?>
<?php echo artxPositions($document, array('user4', 'user5'), 'artpost'); ?>
<?php echo artxModules($document, 'banner5', 'xhtml'); ?>
</div>
<?php if (artxCountModules($document, 'right')) : ?>
<div class="sidebar1"><?php echo artxModules($document, 'right', 'artblock'); ?>
</div>
<?php endif; ?>
</div>
<div class="cleared"></div>
<?php echo artxPositions($document, array('bottom1', 'bottom2', 'bottom3'), 'artblock'); ?>
<jdoc:include type="modules" name="banner6" style="xhtml" />
<div class="Footer">
<div class="Footer-inner">
<?php echo artxModules($document, 'syndicate'); ?>
<div class="Footer-text">
<?php if (artxCountModules($document, 'copyright') == 0): ?>
<p>Copyright © 2009 ---.<br/>
All Rights Reserved.</p>
<?php else: ?>
<?php echo artxModules($document, 'copyright', 'xhtml'); ?>
<?php endif; ?>
</div>
</div>
<div class="Footer-background"></div>
</div>
</div>
</div>
<div class="cleared"></div>
<p class="page-footer">Designed by <a href=" www.ablewebpro.com/site/index.php?option...emid=84">Web Development Services</a>.</p>
</div>
</body>
</html>
<?php
defined('_JEXEC') or die('Restricted access'); // no direct access
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'functions.php';
$document = isset($this) ? $this : null;
$baseUrl = $this->baseurl;
$templateUrl = $this->baseurl . '/templates/' . $this->template;
artxComponentWrapper($document);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ;
<html xmlns=" www.w3.org/1999/xhtml" ; xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="<?php echo $templateUrl; ?>/css/template.css" />
<!--[if IE 6]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie6.css" type="text/css" media="screen" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
<script type="text/javascript" src="<?php echo $templateUrl; ?>/script.js"></script>
</head>
<body>
<div class="PageBackgroundGradient"></div>
<div class="Main">
<div class="Sheet">
<div class="Sheet-tl"></div>
<div class="Sheet-tr"></div>
<div class="Sheet-bl"></div>
<div class="Sheet-br"></div>
<div class="Sheet-tc"></div>
<div class="Sheet-bc"></div>
<div class="Sheet-cl"></div>
<div class="Sheet-cr"></div>
<div class="Sheet-cc"></div>
<div class="Sheet-body">
<div class="Header">
<div class="Header-png"></div>
<div class="Header-jpeg"></div>
<div class="logo">
<h1 id="name-text" class="logo-name"><a href="<?php echo $baseUrl; ?>/"></a></h1>
<div id="slogan-text" class="logo-text"></div>
</div>
</div>
<jdoc:include type="modules" name="user3" />
<jdoc:include type="modules" name="banner1" style="xhtml" />
<?php echo artxPositions($document, array('top1', 'top2', 'top3'), 'artblock'); ?>
<div class="contentLayout">
<div class="<?php echo artxCountModules($document, 'right') ? 'content' : 'content-wide'; ?>">
<?php
echo artxModules($document, 'banner2', 'xhtml');
if (artxCountModules($document, 'breadcrumb'))
echo artxPost(null, artxModules($document, 'breadcrumb'));
echo artxPositions($document, array('user1', 'user2'), 'artpost');
echo artxModules($document, 'banner3', 'xhtml');
?>
<?php if (artxHasMessages()) : ?><div class="Post">
<div class="Post-body">
<div class="Post-inner">
<div class="PostContent">
<jdoc:include type="message" />
</div>
<div class="cleared"></div>
</div>
</div>
</div>
<?php endif; ?>
<jdoc:include type="component" />
<?php echo artxModules($document, 'banner4', 'xhtml'); ?>
<?php echo artxPositions($document, array('user4', 'user5'), 'artpost'); ?>
<?php echo artxModules($document, 'banner5', 'xhtml'); ?>
</div>
<?php if (artxCountModules($document, 'right')) : ?>
<div class="sidebar1"><?php echo artxModules($document, 'right', 'artblock'); ?>
</div>
<?php endif; ?>
</div>
<div class="cleared"></div>
<?php echo artxPositions($document, array('bottom1', 'bottom2', 'bottom3'), 'artblock'); ?>
<jdoc:include type="modules" name="banner6" style="xhtml" />
<div class="Footer">
<div class="Footer-inner">
<?php echo artxModules($document, 'syndicate'); ?>
<div class="Footer-text">
<?php if (artxCountModules($document, 'copyright') == 0): ?>
<p>Copyright © 2009 ---.<br/>
All Rights Reserved.</p>
<?php else: ?>
<?php echo artxModules($document, 'copyright', 'xhtml'); ?>
<?php endif; ?>
</div>
</div>
<div class="Footer-background"></div>
</div>
</div>
</div>
<div class="cleared"></div>
<p class="page-footer">Designed by <a href=" www.ablewebpro.com/site/index.php?option...emid=84">Web Development Services</a>.</p>
</div>
</body>
</html>
[i:3um02383][b:3um02383]Os Mais Belos Site do Brasil http:///www.vika33.com.br. Confira, produtos excelentes e otimos preços![/b:3um02383][/i:3um02383]
Please Entrar ou Registrar to join the conversation.
- christianosr
-
Autor do Tópico
- Offline
- JCB! Novato
-
Menos
Mais
- Postagens: 7
- Obrigados Recebidos: 0
15 anos 5 meses atrás #30221
por christianosr
christianosr replied the topic: Re: topo em flash no template
instalei um modulo de flash!! mesmo assim nao funcionou!! peguei uma video aula e vou tentar ok!! mas alguma tica decomo utilizar o modulo de flash!!mod_flashmod!!! valeu
Please Entrar ou Registrar to join the conversation.