Joomla 1.5 Расстояние между breadcrumbs и статьей

Тема в разделе "CSS, HTML, Web 2.0, верстка по web-стандартам", создана пользователем boneshaker, 08.06.2011.

  1. Offline

    boneshaker Недавно здесь

    Регистрация:
    08.06.2011
    Сообщения:
    18
    Симпатии:
    0
    Пол:
    Мужской
    Здравствуйте, возникла проблема. Непонятно откуда появился странный пробел в коде из за которого статья уходит вниз от хлебных крошек. Раньше такого не наблюдалось. Joomla 1.5 Virtumart 1.1.4
    Вот скриншот с firebug
    [​IMG]
    Вопрос: где именно поймать злополучную строчку. Шаблон кстати склеен в Artisteer 3.
    Заранее спасибо за ответ
     
  2.  
  3. Offline

    boneshaker Недавно здесь

    Регистрация:
    08.06.2011
    Сообщения:
    18
    Симпатии:
    0
    Пол:
    Мужской
    Код (CODE):
    1. <?php
    2. defined('_JEXEC') or die('Restricted access'); // no direct access
    3. require_once dirname(__FILE__). DIRECTORY_SEPARATOR . 'functions.php';
    4. $document = null;
    5. if (isset($this))
    6. $document = & $this;
    7. $baseUrl = $this->baseurl;
    8. $templateUrl = $this->baseurl . '/templates/' . $this->template;
    9. artxComponentWrapper($document);
    10. ?>
    11. <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    12. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
    13. <head>
    14. <jdoc:include type="head" />
    15. <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
    16. <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
    17. <link rel="stylesheet" type="text/css" href="<?php echo $templateUrl; ?>/css/template.css" media="screen" />
    18. <!--[if IE 6]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie6.css" type="text/css" media="screen" /><![endif]-->
    19. <!--[if IE 7]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
    20. <script type="text/javascript" src="<?php echo $templateUrl; ?>/jquery.js"></script>
    21. <script type="text/javascript">jQuery.noConflict();</script>
    22. <script type="text/javascript" src="<?php echo $templateUrl; ?>/script.js"></script>
    23. </head>
    24. <body>
    25. <div id="art-main">
    26. <div class="art-sheet">
    27. <div class="art-sheet-tl"></div>
    28. <div class="art-sheet-tr"></div>
    29. <div class="art-sheet-bl"></div>
    30. <div class="art-sheet-br"></div>
    31. <div class="art-sheet-tc"></div>
    32. <div class="art-sheet-bc"></div>
    33. <div class="art-sheet-cl"></div>
    34. <div class="art-sheet-cr"></div>
    35. <div class="art-sheet-cc"></div>
    36. <div class="art-sheet-body">
    37. <div class="art-header">
    38. <div class="art-header-center">
    39. <div class="art-header-png"></div>
    40. </div>
    41. </div>
    42. <jdoc:include type="modules" name="user3" />
    43. <jdoc:include type="modules" name="banner1" style="artstyle" artstyle="art-nostyle" />
    44. <?php echo artxPositions($document, array('top1', 'top2', 'top3'), 'art-block'); ?>
    45. <div class="art-content-layout">
    46. <div class="art-content-layout-row">
    47. <?php if (artxCountModules($document, 'left')) : ?>
    48. <div class="art-layout-cell art-sidebar1">
    49. <div class="art-layout-bg"></div>
    50. <?php echo artxModules($document, 'left', 'art-block'); ?>
    51. <div class="cleared"></div>
    52. </div>
    53. <?php endif; ?>
    54. <?php $contentCellStyle = artxCountModules($document, 'left')? 'content' : 'content-wide'; ?>
    55. <div class="art-layout-cell art-<?php echo $contentCellStyle; ?>">
    56. <?php
    57. echo artxModules($document, 'banner2', 'art-nostyle');
    58. if (artxCountModules($document, 'breadcrumb'))
    59. echo artxPost(null, artxModules($document, 'breadcrumb'));
    60. echo artxPositions($document, array('user1', 'user2'), 'art-article');
    61. echo artxModules($document, 'banner3', 'art-nostyle');
    62. ?>
    63. <?php if (artxHasMessages()) : ?><div class="art-post">
    64. <div class="art-post-tl"></div>
    65. <div class="art-post-tr"></div>
    66. <div class="art-post-bl"></div>
    67. <div class="art-post-br"></div>
    68. <div class="art-post-tc"></div>
    69. <div class="art-post-bc"></div>
    70. <div class="art-post-cl"></div>
    71. <div class="art-post-cr"></div>
    72. <div class="art-post-cc"></div>
    73. <div class="art-post-body">
    74. <div class="art-post-inner">
    75. <div class="art-postcontent">
    76. <jdoc:include type="message" />
    77. </div>
    78. <div class="cleared"></div>
    79. </div>
    80. <div class="cleared"></div>
    81. </div>
    82. </div>
    83. <?php endif; ?>
    84. <jdoc:include type="component" />
    85. <?php echo artxModules($document, 'banner4', 'art-nostyle'); ?>
    86. <?php echo artxPositions($document, array('user4', 'user5'), 'art-article'); ?>
    87. <?php echo artxModules($document, 'banner5', 'art-nostyle'); ?>
    88.  
    89. <div class="cleared"></div>
    90. </div>
    91.  
    92. </div>
    93. </div>
    94. <div class="cleared"></div>
    95.  
    96.  
    97. <?php echo artxPositions($document, array('bottom1', 'bottom2', 'bottom3'), 'art-block'); ?>
    98. <jdoc:include type="modules" name="banner6" style="artstyle" artstyle="art-nostyle" />
    99. <div class="art-footer">
    100. <div class="art-footer-t"></div>
    101. <div class="art-footer-l"></div>
    102. <div class="art-footer-b"></div>
    103. <div class="art-footer-r"></div>
    104. <div class="art-footer-body">
    105. <div class="art-footer-text">
    106. <?php if (artxCountModules($document, 'copyright') == 0): ?>
    107. <?php ob_start(); ?>
    108. <p>г. Воронеж ул. Базовая 9Б</p><p>ООО &laquo;МЕТА&raquo;; %YEAR%.</p>
    109.  
    110. <?php echo str_replace('%YEAR%', date('Y'), ob_get_clean()); ?>
    111. <?php else: ?>
    112. <?php echo artxModules($document, 'copyright', 'art-nostyle'); ?>
    113. <?php endif; ?>
    114. </div>
    115. <div class="cleared"></div>
    116. </div>
    117. </div>
    118. <div class="cleared"></div>
    119. </div>
    120. </div>
    121. <div class="cleared"></div>
    122. <p class="art-page-footer">Designed by Meta.</p>
    123. </div>
    124. </body>
    125. </html>
     
  4. Offline

    boneshaker Недавно здесь

    Регистрация:
    08.06.2011
    Сообщения:
    18
    Симпатии:
    0
    Пол:
    Мужской
    проблема решена. виноват плагин VirtueMart Product Snapshot Всем кто отозвался спасибо огромное!
     

Поделиться этой страницей

Загрузка...