attachments container

xml

Active member
is there a modification i can do to make attachments looks better?
1. how can i make more space bitween the 2 attached files?
2. how to increase the widthe of the blue container?

thanks in advance for any help

attachment_container.webp
 
Unless you kept notes, it would be difficult to say.

You will just have to work your way through Style Properties, template edits and EXTRA.css.

The relevant CSS class is: .attachment .boxModelFixer
 
Hello Borgan

i was able to rest every thing related to the attachment system style. The only thing i want to know is how to increase the width of the attachments squeers inside the container to make the text inline?

width.webp
 
Add this to EXTRA.css:
Code:
.attachment {
width: 49% !important;
}

That will allow only two attachments in a row.
If you want three, change it to 33%.

If that doesn't work, then you have further edits somewhere which is interfering with it.
 
Top Bottom