我不习惯或不熟悉Joomla系统。所以我在这里需要你的帮助。这是我的问题。 我正在建立一个网站,但模板出现了问题,模板制造商拒绝接受他们犯了一个错误。 AS Templates不要从这些家伙那里购买,除非你不关心自己是否有事情发生。
无论如何,基本上,网站的按钮都不对齐。我尝试通过CSS修复它们但没有运气。有些东西无法在CSS文件中修复,因为它们属于HTML部分。但正如你们中的一些人所知,Joomla是PHP而不是HTML。所以我的问题是如何修复Joomla中的HTML代码行?
具体来说:
我的网站上有这段代码
<form name="logoutForm" method="post" action="/">
<button class="btl-buttonsubmit"onclick="document.logoutForm.submit();" name="Submit" style="">Log out</button>
<input type="hidden" value="com_users" name="option">
<input type="hidden" value="user.logout" name="task">
<input type="hidden" value="aW5kZXgucGhwP0l0ZW1pZD0xMDE=" name="return">
<input type="hidden" value="1" name="7b6cc3e246acff3e3943410a6f4919cf">
</form>
由于这不是PHP代码或CSS,我无法在任何地方找到它
以下是我的两个问题区域的屏幕截图
和
再次感谢
我正在重新编辑它以添加搜索结果的代码。请查看我,请参阅屏幕截图,看看我看到的内容或访问我的网站并搜索任何内容
<?php
defined('_JEXEC') or die;
$lang = JFactory::getLanguage();
$upper_limit = $lang->getUpperLimitSearchWord();
JHtml::_('bootstrap.tooltip');
?>
<form id="searchForm" action="<?php echo JRoute::_('index.php?option=com_search');?>" method="post">
<div class="btn-toolbar">
<div class="btn-group pull-left">
<input type="text" name="searchword" placeholder="<?php echo JText::_('COM_SEARCH_SEARCH_KEYWORD'); ?>" id="search-searchword" size="30" maxlength="<?php echo $upper_limit; ?>" value="<?php echo $this->escape($this->origkeyword); ?>" class="inputbox" />
</div>
<div class="btn group pull-left">
<button name="Search" onclick="this.form.submit()" class="button btn btn hasTooltip" title="<?php echo JText::_('COM_SEARCH_SEARCH');?>"><span class="icon-search"></span></button>
</div>
<input type="hidden" name="task" value="search" />
<div class="clearfix"></div>
</div>
<div class="searchintro<?php echo $this->params->get('pageclass_sfx'); ?>">
<?php if (!empty($this->searchword)):?>
<p><?php echo JText::plural('COM_SEARCH_SEARCH_KEYWORD_N_RESULTS', '<span class="badge badge-info">'. $this->total. '</span>');?></p>
<?php endif;?>
</div>
<fieldset class="phrases">
<legend><?php echo JText::_('COM_SEARCH_FOR');?>
</legend>
<div class="phrases-box">
<?php echo $this->lists['searchphrase']; ?>
</div>
<div class="ordering-box">
<label for="ordering" class="ordering">
<?php echo JText::_('COM_SEARCH_ORDERING');?>
</label>
<?php echo $this->lists['ordering'];?>
</div>
</fieldset>
<?php if ($this->params->get('search_areas', 1)) : ?>
<fieldset class="only">
<legend><?php echo JText::_('COM_SEARCH_SEARCH_ONLY');?></legend>
<?php foreach ($this->searchareas['search'] as $val => $txt) :
$checked = is_array($this->searchareas['active']) && in_array($val, $this->searchareas['active']) ? 'checked="checked"' : '';
?>
<label for="area-<?php echo $val;?>" class="checkbox">
<input type="checkbox" name="areas[]" value="<?php echo $val;?>" id="area-<?php echo $val;?>" <?php echo $checked;?> >
<?php echo JText::_($txt); ?>
</label>
<?php endforeach; ?>
</fieldset>
<?php endif; ?>
<?php if ($this->total > 0) : ?>
<div class="form-limit">
<label for="limit">
<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>
</label>
<?php echo $this->pagination->getLimitBox(); ?>
</div>
<p class="counter">
<?php echo $this->pagination->getPagesCounter(); ?>
</p>
<?php endif; ?>
</form>
答案 0 :(得分:1)
但是作为建议你可以使用firebug,如果你使用firefox或google开发人员工具,按ctrl shift j打开它们。您可以实时编辑部分内容,并查看在特定位置需要完成的更改,然后您就可以执行这些更改。
例如,我在“联系人”部分找到了右上角的横幅标题,该标题从模板中弹出。通过将填充设置为0 0 20px,该修复位于/templates/as002035/css/tmpl.custom.css第11行。
创建帐户时,模态框会溅入我的脸部。您需要通过使用这些工具再次编辑该窗口的宽度和高度来解决这个问题。
最后我无法看到退出按钮“表单”,因为我的电子邮件中没有发送邮件,因此无法注册到您的网站。所以你可能需要开发人员来解决所有这些问题。
我希望我帮了一下。
答案 1 :(得分:1)
除了已提供的(好)建议之外,您的问题仍然缺失答案:HTML标记来自何处?
您可以在以下两个地方找到它:首先检查您的模板覆盖(我认为是查看您的问题的情况),它将位于
/templates/as002035/html/com_users/login/default_logout.php (logout component)
/templates/as002035/html/mod_login/ (login|logout module)
如果它们不存在,则默认的Joomla布局在
中/components/com_users/views/...
/modules/mod_login/tmpl
你错过了一个“按钮”类,所以模块的行应该是:
<input type="submit" value="Log out" class="button btn btn-primary" name="Submit">
而不是
<input type="submit" value="Log out" class="btn btn-primary" name="Submit">
(参见添加的“按钮”?)。你找到了模板吗?它是否在重写?如果你可以做出改变,你就可以修复模块。至于组件注销表单,http://www.guhlmotors.com/index.php?option=com_users
<button class="button btn" type="submit">Log out</button>
而不是
<button class="button" type="submit">Log out</button>