How to delete the padding-top?

Hi there?

How to delete the padding-top?

My code is:

      <div class="user-pannel-row">
		<div class="user-pannel-avatar user-pannel-column">
			<a href="<?php echo $Config['WebsitePath']; ?>/u/<?php echo urlencode($ActiveHaigui['UserName']); ?>">
			<?php echo '<img src="' . $Config['WebsitePath'] . '/static/img/guides/' . 'guide2' . '.jpg" alt=""/>'; ?>
			</a>
		</div>
		<div class="user-pannel-column">
				
			<span style="padding-top:0px;"><?php echo $ActiveHaigui['UserIntro'];?>	 
			</span>
			</div>
		
		</div>

I think the problem is:

.user-pannel-column {

display: table-cell;

}

but, how to improve it?

Hello @zhuceyouxiang88,

will you please provide a full HTML and CSS code for this page to find the issue?

You can try adding vertical-align:top to the table cell but as mentioned above we really need to see the pertinent code to wok out what’s really going on :slight_smile:

.user-pannel-column {
vertical-align:top;
display: table-cell;
}

It worked! thank you so much!

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.