Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Donizeti Junior Ferraz

Como Alterar o tamanho da largura dos artigos entre as páginas?

Recommended Posts

Olá,

 

Estou com um problema no joomla. No site que estou fazendo, o artigo na página principal precisa ter uma largura de 950px, que é a dimensão do menu site, porem nas outras páginas tem uma coluna do lado do artigo, e nelas ele precisa ter uns 700px de largura.

 

Resumindo,

 

Como fazer o artigo ter 950px ou 100% de largura na home, e nas demais páginas apenas 700px?

 



Alguem?

Compartilhar este post


Link para o post
Compartilhar em outros sites

normalmente se não existe nenhum modulo na posição ele deveria se estender normalmente.

ja tentou colocar dentro de uma tabela ?

 

<table width="100%" border="0">
<tr>
<td>conteudo do artigo aqui dentro</td>
</tr>
</table>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Estranhamente ele não vai, ele fica limitado a posição que criei, veja o meu código, eu criei o tema, teria alguma coisa errada nele?

<?php 

/*------------------------------------------------------------------------

intercambios.com.br

-------------------------------------------------------------------------*/



defined( '_JEXEC' ) or die; 



// variables

$app = JFactory::getApplication();

$doc = JFactory::getDocument(); 

$params = &$app->getParams();

$pageclass = $params->get('pageclass_sfx');

$tpath = $this->baseurl.'/templates/'.$this->template;



$this->setGenerator(null);



// load sheets and scripts

$doc->addStyleSheet($tpath.'/css/template.css.php?v=1.0.0'); ?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" 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/template.css" type="text/css" />
<link href="css/template.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/js/jquery.js"></script>
<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/js/cycle.js"></script>
<script type="text/javascript">
$('#slide').cycle();
</script>
<title>.:Intercambios.com.br:.</title>
</head>

<body>

   <!--<div id="header">-->
   		
   		<div id="header-center">
            	<?php if ($this->countModules('box-slider')): ?>
        			<div id="box-slider"><jdoc:include type="modules" name="box-slider" /></div>
                <?php endif; ?>
        
                <?php if ($this->countModules('box-menu-horizontal')): ?>
                    <div id="box-menu-horizontal"><jdoc:include type="modules" name="box-menu-horizontal" /></div>
                <?php endif; ?>
                
                <?php if ($this->countModules('box-logo')): ?>
                    <div id="box-logo"><jdoc:include type="modules" name="box-logo" /></div>
                <?php endif; ?>
                
                <?php if ($this->countModules('box-telefone')): ?>
                    <div id="box-telefone"><jdoc:include type="modules" name="box-telefone" /></div>
                <?php endif; ?>
                
         </div><!-- header-center -->
            
   <!-- </div> -->
    
   <div id="site">
        <div id="content">
        	<!-- ARTIGO -->
        	<div id="box-artigo">
               <jdoc:include type="message" />
               <jdoc:include type="component" />             
            </div>
            <!-- ARTIGO -->
            <?php if ($this->countModules('box-sidebar')): ?>
            	<div id="box-sidebar"><jdoc:include type="modules" name="box-sidebar" /></div>
            <?php endif; ?>
         </div><!-- content -->
         <div id="content-bottom">
            <?php if ($this->countModules('box-content-bottom-1')): ?>
            	<div id="box-content-bottom-1"><jdoc:include type="modules" name="box-content-bottom-1" /></div>
            <?php endif; ?>
            
            <?php if ($this->countModules('box-content-bottom-2')): ?>
            	<div id="box-content-bottom-2"><jdoc:include type="modules" name="box-content-bottom-2" /></div>
            <?php endif; ?>
            
            <?php if ($this->countModules('box-content-bottom-3')): ?>
            	<div id="box-content-bottom-3"><jdoc:include type="modules" name="box-content-bottom-3" /></div>
            <?php endif; ?>
            
            <?php if ($this->countModules('box-content-bottom-4')): ?>
            	<div id="box-content-bottom-4"><jdoc:include type="modules" name="box-content-bottom-4" /></div>
            <?php endif; ?>
            
            <?php if ($this->countModules('box-contato')): ?>
            	<div id="box-contato"><jdoc:include type="modules" name="box-contato" /></div>
            <?php endif; ?>
            
        </div><!-- content-bottom -->
   </div><!-- site -->
   <div id="footer">
   
   		<?php if ($this->countModules('box-footer')): ?>
    		<div id="box-footer"><jdoc:include type="modules" name="box-footer" /></div>
    	<?php endif; ?>
        
   </div><!-- footer -->
</body>
</html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Foi definido em tamanhos fixos(px) pois quando colocava em porcentagem ele ultrapassava os limites do site.



Obrigado pela ajuda, mas consegui resolver o problema, coloquei uma if no artigo que identifica a url, e assim consigo fazer um estilo para cada if :pinch:

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.