How to remove img border in blog object?

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
bzc0fq@gmail.com
 
 
Posts: 30
Joined: Sat Feb 26, 2022 3:46 pm

How to remove img border in blog object?

Post by bzc0fq@gmail.com »

Hi,

I have a blog that displays images and text. The problem is that I do not know how to get rid of a border surrounding images inside blog.

Border is declared in css file: Blog.css line 249
border: 1px solid #ddd;

I tried this:
p .blogthumb {
border: none;
};
and various combinations but none work.

Could you please advise on how this border can be removed?

Many thanks for helping

Best Regards
Last edited by bzc0fq@gmail.com on Sat Aug 24, 2024 7:45 pm, edited 2 times in total.
User avatar
crispy68
 
 
Posts: 3001
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: How to remove img border in blog object?

Post by crispy68 »

You can add some CSS code like this:

Code: Select all

#Blog1 .blogthumb {border:none;box-shadow:none;}
If you remove the border there is still a box shadow present so I added that to the code as well.
bzc0fq@gmail.com
 
 
Posts: 30
Joined: Sat Feb 26, 2022 3:46 pm

Re: How to remove img border in blog object?

Post by bzc0fq@gmail.com »

Thanks.

I found a solution in the same time you did :)... I have copied out layout files and changed theirs names so that it is unique in the blog directory. Then I have changed the layout and css... so that it works now.

I'm aware that new files should not be placed in program files directory. I wish I could remember where to put them so that it will not be overwritten when upgrading the application... but... I forgot :(

Maybe someone could remind me please where to copy them? (I believe it was C:\Users\%USERNAME%\Documents\WYSIWYG Web Builder\ but I cannot see blog directory there)

Anyway, thanks for your help.
bzc0fq@gmail.com
 
 
Posts: 30
Joined: Sat Feb 26, 2022 3:46 pm

Re: How to remove img border in blog object?

Post by bzc0fq@gmail.com »

OK. I have found it... it was in C:\Users\%USERNAME%\Documents\WYSIWYG Web Builder\system\blog directory.
Post Reply