solved CSS Style

Isleander
Isleander
@isleander
3 years ago
545 posts
I’m struggling to find the correct CSS style for the page areas ticked on the enclosed image. I been through a few styles but as yet have not found the correct one.

As always - thank you.
updated by @isleander: 05/16/21 09:25:48AM
michael
@michael
3 years ago
7,692 posts
Guessing you found what you were after, this is what I see.
what_i_see.jpg
what_i_see.jpg  •  1.1MB

Isleander
Isleander
@isleander
3 years ago
545 posts
michael:
Guessing you found what you were after, this is what I see.

Yes, Michael,

I managed to find the correct CSS for one, but I believe the other was a background image.

Thank you for your response.
Isleander
Isleander
@isleander
3 years ago
545 posts
Me again! Sorry!

Where can I find the CSS for removing these lines... (please see attached image)
michael
@michael
3 years ago
7,692 posts
its a boarder on the .item class
bottom.jpg
bottom.jpg  •  1.7MB

Isleander
Isleander
@isleander
3 years ago
545 posts
OK, thank you Micheal.
How do I access that in order to change it?
updated by @isleander: 02/10/21 09:18:55AM
michael
@michael
3 years ago
7,692 posts
There are a few ways depending on what you're comfortable with

#1 using the STYLE tab at
ACP -> SKINS -> (your skin) -> STYLE -> BASIC RULE EDITOR

#2 using the STYLE tab at
ACP -> SKINS -> (your skin) -> STYLE -> CUSTOM EDITOR -> add some custom css in here

#3 changing the CSS file via SFTP at
/public_html/skins/(your skin)/css/ ( pick any file you like .css ) -> Add the rule in there.

My preference is almost always #3, because it fits with how I like to work.
Isleander
Isleander
@isleander
3 years ago
545 posts
I’ve not been able to locate an “ .item class” on any of the CSS pages.
michael
@michael
3 years ago
7,692 posts
Just add it in:
.item{
  border: none !important;
}
add.jpg
add.jpg  •  308KB