جستجو در تالارهای گفتگو
در حال نمایش نتایج برای برچسب های 'استایل ماژول ها و مطالب'.
1 نتیجه پیدا شد
-
باسلام و عرض احترام باسلام یه قالی ساده ساختم اما در موقعیت اسلاید شو هرچی میذارم اود نمیشه و یک سوال هم دارم.چطور میشه برای باکس های ماژول استایل دهی کرد؟ مثلا توی چپ یه ماژول با عنوان "عنوان یک" بذاری بکگراندش یه عکس باشه و خود ماژول با یک بکگراند دیگه لود شه؟ فایل ایندکس: <?php defined('_JEXEC') or die('Restricted access'); JHtml::_('behavior.framework', true); ?> <!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" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/template.css" type="text/css" /> </head> <body> <div id="aasli"> <div id="asli"> <div id="header"> </div> <div id="m-s"> <?php if($this->countModules('menu')): ?> <div id="menu"> <jdoc:include type="modules" name="menu" style="xhtml" /> </div> <?php endif; ?> <?php if($this->countModules('search')): ?> <div id="search"> <jdoc:include type="modules" name="search" style="xhtml" /> </div> <?php endif; ?> </div> <div id="rcl"> <?php if($this->countModules('right')): ?> <div id="right"> <jdoc:include type="modules" name="right" style="xhtml" /> </div> <?php endif; ?> <div id="center"> <?php if($this->countModules('slideshow')): ?> <div id="slideshow"> <jdoc:include type="modules" name="slideshow" style="xhtml" /> </div> <?php endif; ?> <div id="content"> <jdoc:include type="component" /> </div> </div> <?php if($this->countModules('left')): ?> <div id="left"> <jdoc:include type="modules" name="left" style="xhtml" /> </div> <?php endif; ?> </div> </div> </div> </body> </html> فایل css: /*@charset "utf-8"; */ /* CSS Document */ /* # ------------------------------------------------------------------------ # Joomla Free Templates # ------------------------------------------------------------------------ # Copyright (C) 2012-2020 (..). All Rights Reserved. # Website: (..) # ِDesign by : (..) # ------------------------------------------------------------------------ */ @charset "utf-8"; /* CSS Document */ #aasli{ width:1000px; height:auto; margin:auto; } #asli{ width:978px; height:auto; } #header{ width:978px; height:150px; background-image:url(../images/rajablu.jpg); } #m-s{ width:978px; height:35px; background-color:#900; } #menu{ width:750px; height:35px; background-color:#900; padding:3px; float:right; border-radius:10px; direction:rtl; } #search{ width:215px; height:35px; background-color:#900; padding:3px; float:right; border-radius:10px; } #rcl{ width:978px; height:auto; } #right{ width:200px; height:auto; background-color:#090; float:right; } #center{ width:578px; height:auto; float:right; } #slideshow{ width:578px; height:200; float:right; background-color:#090; margin-top:0 px; } #content{ margin-top:210px; width:578px; height:auto; float:right; background-color:#CCC; border-radius:5px; direction:rtl; } #left{ width:200px; height:auto; float:right; background-color:#900; }