I have basic ddblock which works nicely so I attempted to make one with 'extra info' as per the instructions. Attached is a pic of my unfortunate result. It scrolls as expected but the extra info obviously is not where it should be overlaying the photos etc.
I also place: stylesheets[all][] = custom/modules/ddblock/custom.css in the [theme].info file and makes no difference except to constantly having to clear the cache.
Also,
.ddblock-container h2 {
display:none important!;
}
in the style.css
but still always the same messed up result, with or without the above. I have also tried all the input formats including php with no difference.
Can someone please help (using newest version of Drupal 6) This is my code:
<div class="slides">
<div class="slide">
<div class="slide-text-left">
<div class="slide-title">
<h2>this is slide text for pic 1</h2>
</div>
<div class="slide-text">
<p>This is slide text for pic 1.</p>
</div>
<div class="slide-read-more">
<h4><a href="/node/2">Read more...</a></h4>
</div>
</div>
<div class="slide-image"><img src="http://localhost/whataboutlife/sites/default/files/1.jpg" /></div>
</div>
<div class="slide">
<div class="slide-text-left">
<div class="slide-title">
<h2>Slide Pic No 1</h2>
</div>
<div class="slide-text">
<p>this is slide text for pic 2.</p>
</div>
<div class="slide-read-more">
<h4><a href="/node/1">Read more...</a></h4>
</div>
</div>
<div class="slide-image"><img src="http://localhost/whataboutlife/sites/default/files/2.jpg" /></div>
</div>
</div>
Comments
.
Please create an issue in the issue queue of the dynamic display block module, so it is better manageable and useful for other users.
Your code looks ok, your input type should be full HTML of filtered HTML if you allow all the tags used.
After you change something in the .info file you should clear the cache.
Can you provide a link to the Internet site.
hi and thank you for reply.
hi and thank you for reply. I have made sure input type is full HTML and I have created issue as advised. Also I have cleared the cache yet again but this stopped working - that is, i still lose all my css until i take that line out of the .info file altogether. Also I will upload to my host from local environment soon to give link to the site. Thank you.