html - Page CSS is randomly adding padding to portfolio images -


my team developed portfolio website.

but facing strange issue.

we pasted issue in theme support, not yet solved.

while loading page, giving this:

padding_image

and this(we want this): required_image

how rid of this??

i'm not familiar wordpress if have access css controls template them maybe can use firebug or inspect element find out if upper , lower divs have class specifications, , set margins 0 in css file this:

i'll pretend firebug revealed div classes upperdiv , lowerdiv this:

<div class="upperdiv">photos</div> <div class="lowerdiv">photos</div> 

in css try:

.upperdiv {   margin-bottom: 0px; } .bottomdiv {   margin-top: 0px; } 

hope helps.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -