Jump to content
  • 0

Чем обычно создаются такие пустоты?


borus
 Share

Question

Здравствуйте.

Если посмотреть на странице, то можно увидеть в html коде зазор " ", который опускает изображение ниже, чем требуется. Посмотрел php - так и не увидел, от чего это. Что говорит ваш опыт?

h_1376997927_3465215_e11aea3900.jpg

Edited by borus
Link to comment
Share on other sites

15 answers to this question

Recommended Posts

  • 0

Дать ссылку на проект есть возможность?

Сам по себе он там не появиться, посмотри через CTRL-U и скажи есть ли он там.

Как вариант кавычки добавил псевдоэлимент.

Edited by parabola
Link to comment
Share on other sites

  • 0

Дать ссылку на проект есть возможность?

Сам по себе он там не появиться, посмотри через CTRL-U и скажи есть ли он там.

Как вариант кавычки добавил псевдоэлимент.

Ссылка

Link to comment
Share on other sites

  • 0

edit html нажать не судьба? увидите красный круг который и дает отступ

да, он там есть, но сколько не смотрел, не понял, чем он создается. Не хочется JS призывать.

Вот как выглядит сборка страницы. Этим кода начинает формироваться html начиная с <div class="main_image">...


ob_start();
// Include the requested template filename in the local scope
// (this will execute the view logic).
include $this->_template;
// Done with the requested template; get the buffer and
// clear it.
$this->_output = ob_get_contents();
ob_end_clean();

return $this->_output;

а вот что инклюдится:


<?php
/**
*
* Show the product details page
*
* @package VirtueMart
* @subpackage7
* @author Max Milbers, Valerie Isaksen
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: default_images.php 6188 2012-06-29 09:38:30Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
vmJsApi::js( 'fancybox/jquery.fancybox-1.3.4.pack');
vmJsApi::css('jquery.fancybox-1.3.4');
$document = JFactory::getDocument ();
$imageJS = '
jQuery(document).ready(function() {
jQuery("a[rel=vm-additional-images]").fancybox({
"titlePosition" : "inside",
"transitionIn" : "elastic",
"transitionOut" : "elastic"
});
});
';
$document->addScriptDeclaration ($imageJS);
if (!empty($this->product->images)) {
$image = $this->product->images[0];
?>
<div class="main-image">
....

Хм... может этот символ выводится от прыдущего куска, например также выводимом через ob_start()

Link to comment
Share on other sites

  • 0

Смотрю так и не решили вопрос

h_1380291827_4856581_819564716f.png

В красном прямоугольнике отмечена ваша проблема "". Его надо убрать либо сохранить документ без BOM либо если это уже сделано и не помогает, тогда создайте новый файл без BOM и перенесите туда эти данные предварительно сохраненные в обычном блокноте.

  • Like 1
Link to comment
Share on other sites

  • 0

Смотрю так и не решили вопрос

В красном прямоугольнике отмечена ваша проблема "". Его надо убрать либо сохранить документ без BOM либо если это уже сделано и не помогает, тогда создайте новый файл без BOM и перенесите туда эти данные предварительно сохраненные в обычном блокноте.

Поклон. Да, надо было пересохранить в UTF-8 без BOM

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy