Something wrong with the attached files thumbs?

Hilmer

Active member
Apparently it is risky business to play with the code o_O
Anyway I learn a lot and I am so happy with our new board :)

I have two strange behaviors:

1.
thumbs.webp


2.

thumbs2.webp

Anyone who know how to fix this?

Morten
 
The first issue could be due to you or an add-on changing some CSS related to thumbnails, you will need to revert those changes.

They should look more like this:
attached.webp

The second issue is normal.
 
Thanks Brogan.
I just don't know how to revert the changes - du I have to turn off the plug ins to find the bad one?
Or can I find out in a smarter way?
 
The link is the right one:)
Well thats strange, just entered again and now it looks different - I haven't changed anything.

thumb3.webp

Do you know how to get this information under the photo - and even better where to change the white background?
 
Try hard refreshing your browser and/or clearing the cache.

Add this to EXTRA.css:
Code:
.attachment .boxModelFixer {
background-color: orange !important;
}
 
.attachment .thumbnail {
float: none !important;
}

Change the colour to suit.
 
Perfect Brogan - the color changed and the text moved below the thumb :) Thanks a lot for that.

A last question according to the thumbs:
When the browser window is small everything looks nice, but when I make the window larger it does not.
Maybe you know a solution?

large window.webp


small window.webp
 
The thumbnail boxes use a percentage of the available width.

You can give them a fixed width if you wish:
Code:
.attachment {
width: 200px !important;
}
Change the width to suit.
 
Top Bottom