Hi !
So, first of all, thanks for all the gret stuff.
So here I am, customizing Texturia by adding a new module position. Basically, it's a "top-module2". I use "place article anywhere" to display videos on this module. Everything works so far, except when I want to edit the article in Frontend (the content place itself over the edition space).
Here are some images:
This image is hidden for guests. Please log in or register to see it.
Here we see it displays the custom new module position with its content properly.
This image is hidden for guests. Please log in or register to see it.
Here we can clearly see that content override the edition space
This image is hidden for guests. Please log in or register to see it.
And finally here, we can see that, when placed in original "top-content" position, there are no problem at all when editing from frontend.
Here is the piece of code I use for this custom position:
#jf-topmodule2contain{
margin-bottom:10px;
padding-bottom:40px;
}
#jf-topmodule2contain p { margin: 0; }
#jf-topmodule2contain-marge{ margin-right: 10px; margin-left: 10px; margin-bottom: 20px; }
#jf-topmodule2title {
background-image: url(../images/topmodule2title.png);
background-repeat: no-repeat;
float: left;
width: 424px;
height: 84px;
margin:0;
padding:0;
}
#jf-topmodule2title h3 { padding-left:30px; padding-top:30px; }
#jf-topmodule2title p { margin: 0; }
#jf-topmodule2 {
background:#323232;
float: left;
margin:0;
padding:0;
-webkit-border-radius: 10px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 10px;
-moz-border-radius-topleft: 0;
border-radius: 10px;
border-top-left-radius: 0;
}
<?php if($this->countModules('top-content2')) : ?>
<div id="jf-topmodule2contain">
<div id="jf-topmodule2title"><h3>Videos</h3></div>
<div id="jf-topmodule2">
<div id="jf-topmodule2contain-marge">
</div>
</div>
</div>
<?php endif; ?>
So, I am wondering, what could be the source of the problem, and how to fix it ?
Anyway, thanks for the answer you'll can give me.