onthefly Active member Mar 27, 2020 #1 Hey gang been searching the threads to hopefully find a solution before post but have been unsuccessful. Im look to remove the spacing as you see in the attached picture. Your help is appreciated, cheers.
Hey gang been searching the threads to hopefully find a solution before post but have been unsuccessful. Im look to remove the spacing as you see in the attached picture. Your help is appreciated, cheers.
Snog Well-known member Mar 27, 2020 #2 Template app_header.less The .p-header-content section. Upvote 0 Downvote
onthefly Active member Mar 27, 2020 #3 Snog said: Template app_header.less The .p-header-content section. Click to expand... This part and what would I change? Code: .p-header-content { padding: @xf-paddingMedium 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; max-width: 100%; } Upvote 0 Downvote
Snog said: Template app_header.less The .p-header-content section. Click to expand... This part and what would I change? Code: .p-header-content { padding: @xf-paddingMedium 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; max-width: 100%; }
onthefly Active member Mar 27, 2020 #5 Snog said: The padding. padding: 0 0; Click to expand... I appreciate your help but that didnt work Upvote 0 Downvote
onthefly Active member Mar 27, 2020 #6 Code: padding: @xf-paddingMedium -1px; that removed it?? Upvote 0 Downvote
Snog Well-known member Mar 27, 2020 #7 If the only part you changed was the padding and left everything else the same, it should have worked. So, I don't know what to tell you. Upvote 0 Downvote
If the only part you changed was the padding and left everything else the same, it should have worked. So, I don't know what to tell you.
Snog Well-known member Mar 27, 2020 #8 onthefly said: Code: padding: @xf-paddingMedium -1px; that removed it?? Click to expand... The first value for padding is the top & bottom padding. The second value is left & right padding. So, changing the first value to zero padding: 0 0; should have removed the top & bottom padding. Upvote 0 Downvote
onthefly said: Code: padding: @xf-paddingMedium -1px; that removed it?? Click to expand... The first value for padding is the top & bottom padding. The second value is left & right padding. So, changing the first value to zero padding: 0 0; should have removed the top & bottom padding.
onthefly Active member Mar 27, 2020 #9 I copied and pasted Code: padding: 0 0; to replace Code: padding: @xf-paddingMedium 0; which had no change, so I reverted back to original and the changed it to this, Code: padding: @xf-paddingMedium -1px; and then it worked. Snog said: The first value for padding is the top & bottom padding. The second value is left & right padding. So, changing the first value to zero padding: 0 0; should have removed the top & bottom padding. Click to expand... Upvote 0 Downvote
I copied and pasted Code: padding: 0 0; to replace Code: padding: @xf-paddingMedium 0; which had no change, so I reverted back to original and the changed it to this, Code: padding: @xf-paddingMedium -1px; and then it worked. Snog said: The first value for padding is the top & bottom padding. The second value is left & right padding. So, changing the first value to zero padding: 0 0; should have removed the top & bottom padding. Click to expand...