I have not made any changes to the module and it seems other sites using this module seem to work. Mine however seems to offset the cover image with the text of the album. How can I fix this? I have attached an image to this post for an example

CommentFileSizeAuthor
Untitled.jpg34.26 KBcochran242

Comments

vm’s picture

may help if a link was provided directly to the site so that we can use the tools available to us. Specifically firebug for firefox as I believe your issue is related to the css in your theme.

that said, use the firefox browser and the firebug add on to inspect the elements of the image.

also worth checking the issue in multiple browsers.

cochran242’s picture

Status: Fixed » Active

Here is the link to the actual site: http://r**********s.com/photos/album

I will try firebug, unfortunately I am very new to css but I am learning.

Also, yes, it happens in IE and Firefox.

Thank you for taking the time with this.

-Casey

berdir’s picture

Status: Active » Fixed

Ok, i found the problem, this was quite tricky :)

One of your style sheets (probably the theme) defines the following:

h1, h2, h3, h4, h5, h6 {
clear:both;
display:block;
font-family:Verdana,Arial,sans-serif;
font-weight:bold;
line-height:1em;
margin:1em 0 0.75em;
padding:0;
}

The problematic part is the "clear: both;". The best way to fix this is to add the following css somewhere:

div.photos-album h2 {clear: none;}

This overwrites the "clear: both;" only for h2 elements inside div elements with the class photos-album... so it shouldn't have any effects to the rest of your site.

I'm setting this issue to fixed, if you have any further questions about it, feel free to re-active it again.

Berdir

cochran242’s picture

Wow... that is great on many levels! Because I have a custom.css for my theme I do not have to worry about updates! Thank you VERY much. Let me know if there is something I may do for you!

Anonymous’s picture

Status: Active » Closed (fixed)

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