Problems subiect
Posted: Fri Sep 11, 2020 10:06 am
Hi, how can I make a space between the author and the smaller message? Thank you.


Home of phpBB
https://www.phpbb.com/community/
https://www.phpbb.com/community/viewtopic.php?f=686&t=2567591
common.css
Edit: post drafted before seeing Mannix_'s reply.responsive-hide a.username {margin-right: 10px;}
Code: Select all
<h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --> <a href="{postrow.U_MINI_POST}"><strong><FONT COLOR="#FFFFFF" ><font size="4">{postrow.POST_SUBJECT}</font></strong><FONT></a><br><br> <span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> </span> <a class="unread" href="{postrow.U_MINI_POST}" title="{postrow.MINI_POST}"><font color="#FFFFFF"><i class="icon fa-clock-o"></i> <time datetime="{postrow.POST_DATE_RFC3339}">{postrow.POST_DATE}</time></font></a> </h3>
Code: Select all
<FONT COLOR="#FFFFFF" ><font size="4">{postrow.POST_SUBJECT}</font></strong><FONT>
if I take h3 out of there, it still makes me black, how could I change it to be the same, but without those codes?RMcGirr83 wrote: ↑Fri Sep 11, 2020 11:32 amHTML hell!! Good grief.Code: Select all
<FONT COLOR="#FFFFFF" ><font size="4">{postrow.POST_SUBJECT}</font></strong><FONT>
I tried but it's still the samepit-PL wrote: ↑Fri Sep 11, 2020 10:49 amYou need to clean up this mess.
Code: Select all
<h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --> <a href="{postrow.U_MINI_POST}"><strong><FONT COLOR="#FFFFFF" ><font size="4">{postrow.POST_SUBJECT}</font></strong><FONT></a><br><br> <span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> </span> <a class="unread" href="{postrow.U_MINI_POST}" title="{postrow.MINI_POST}"><font color="#FFFFFF"><i class="icon fa-clock-o"></i> <time datetime="{postrow.POST_DATE_RFC3339}">{postrow.POST_DATE}</time></font></a> </h3>
My forum is games4all.ro
<p class="author"></p>
.Code: Select all
.postbody h3 a {
color: #ffffff !important;
}
Code: Select all
p.author {
margin-bottom: 0.6em;
padding: 15px 0 30px 0;
line-height: 1.2em;
clear: both;
}
H3 as a color has changed but the message did not rise above, another solution?Mannix_ wrote: ↑Sat Sep 12, 2020 7:20 amFirst delete all your html color coding from the viewtopic_body.html file and add this to milk.css file instead at the bottomTo make the gap smaller do what pit suggested or open content.css findCode: Select all
.postbody h3 a { color: #ffffff !important; }
and adjust the padding, change 30px to whatever you like. After you finish upload the files and purge the cache in ACP and your browserCode: Select all
p.author { margin-bottom: 0.6em; padding: 15px 0 30px 0; line-height: 1.2em; clear: both; }
Sure,do you have Skype,Discord?
Code: Select all
p.author {
margin-bottom: 0.6em;
padding: 10px 0 3px 0;
line-height: 1.2em;
clear: both;
}
Code: Select all
.postbody h3 {
float: left;
padding: 2px 0 0 0;
margin-top: 0 !important;
margin-bottom: 1.1em !important;
text-transform: none;
border: none;
line-height: 125%;
}