- Posts: 3
- Thank you received: 0
remove white space around graphic in breadcrumbs
-
chisurf
Inactive member - Topic Author
- New Member
Less
More
12 years 7 months ago #18758
by chisurf
remove white space around graphic in breadcrumbs was created by chisurf
I am displaying an image using a custom html module. I am trying to remove white space around image, any suggestions? Image is in breadcrumbs position at
www.agreentee.com
.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 7 months ago - 12 years 7 months ago #18780
by ivan.milic
Replied by ivan.milic on topic Re: remove white space around graphic in breadcrumbs
editor wraps it with <p>...</p> , and you can style it using:
.custom p{
margin:0;
padding:0;
}
but p has a bit uncontrollable layout so better turn that off in editor plugin settings. I think setting newline to <br/> would solve your problem.
.custom p{
margin:0;
padding:0;
}
but p has a bit uncontrollable layout so better turn that off in editor plugin settings. I think setting newline to <br/> would solve your problem.
Last edit: 12 years 7 months ago by ivan.milic.
Please Log in to join the conversation.
-
chisurf
Inactive member - Topic Author
- New Member
Less
More
- Posts: 3
- Thank you received: 0
12 years 7 months ago #18788
by chisurf
Replied by chisurf on topic Re: remove white space around graphic in breadcrumbs
ivan,
I stripped the <p>...</p> tags, and set newline to <br/> in editor plugin settings. I still have the same problem. Any other suggestions?
I stripped the <p>...</p> tags, and set newline to <br/> in editor plugin settings. I still have the same problem. Any other suggestions?
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6747
- Thank you received: 716
12 years 7 months ago #18797
by milos
Replied by milos on topic Re: remove white space around graphic in breadcrumbs
What image exactly? Is it image that has text "For every shirt sold..."? This image does not create any blank space below. This is the Facebook module from the right side that pushes everything down.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 7 months ago #18800
by ivan.milic
Replied by ivan.milic on topic Re: remove white space around graphic in breadcrumbs
layout.css:
.content_pad {
padding: 15px 15px 30px 15px;
}
set padding:0;
.content_pad {
padding: 15px 15px 30px 15px;
}
set padding:0;
Please Log in to join the conversation.
Time to create page: 0.181 seconds