Hi.

In line 1 of the libraries plusgalerie.css file we have the following CSS code:

.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }

The slash in the code is breaking the site layout. For example, I cite the Crumbs, that uses the following code:

<section id="breadcrumb" class="clearfix">
<::before>
<div id="breadcrumb" class="clearfix">
<::before>
<nav class="breadcrumb-wrapper clearfix" role="navigation">
<::before>
<h2>You are here</h2>
<ol id="crumbs" class="clearfix">
<::before>
<li class="crumb crumb-first">
<span typeof="v:Breadcrumb">
<a rel="v:url" property="v:title" href="/mysite/home">
</span>
</li>
<li class="crumb">
<span> » </span>
<span typeof="v:Breadcrumb">
<a rel="v:url" property="v:title" href="/mysite/article">Article</a>
</span>
</li>
<::after>
</ol>
<::after>
</nav>
<::after>
</div>

The code of +Gallery makes Crumbs are presented in two lines. I tryed remove the slash, and it solves partially the issue.

Furthermore, in the nodes types where I want to use the galleries are Panelized, and I also use the modules Geocode, Geofield and GeoPHP. The maps in these nodes are being hidden and only returns to normal when the module +Gallery is disabled.

Can anyone help us?

Tks.

Comments

Seppe Magiels’s picture

Status: Active » Fixed

Hey,

I suppose with "removing the slash" from content: "\0020"; you mean the whole \0020 part? If not, remove the rest of "\0020" as well. Normally that should fix the problem, I think?

For the geofield the problem lies in the order of the jQuery files. I add a jQuery file with a different version as the Drupal core. To solve it I don't add the file myself any more, but I use the jquery_update module. There were a few issues (#1448490: Remove the states.js overwrite as it was fixed upstream & #1815896: jQuery 1.7 and 1.8 breaks conditional #states forms) but it's usable. More info on this check the project page and/or release notes.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.