Problems subiect

For support and discussion related to templates and themes in phpBB 3.3.
Thunde
Registered User
Posts: 263
Joined: Fri Aug 28, 2020 2:30 pm

Problems subiect

Post by Thunde »

Hi, how can I make a space between the author and the smaller message? Thank you.

Image
User avatar
Mannix_
Registered User
Posts: 1857
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: Problems subiect

Post by Mannix_ »

Well we aren't magicians around here so little bit more details would be helpful like name of the style your are using since it's not prosilver and also link to your board would be helpful as well to see what is going on.
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
.m.
Registered User
Posts: 539
Joined: Wed Nov 04, 2009 8:39 pm

Re: Problems subiect

Post by .m. »

depends on your style.
one of the methods is to use style property like below in common.css
.responsive-hide a.username {margin-right: 10px;}
Edit: post drafted before seeing Mannix_'s reply

Edit again : posted without getting actual problem !
Last edited by .m. on Sat Sep 12, 2020 6:51 am, edited 1 time in total.
User avatar
pit-PL
Registered User
Posts: 3212
Joined: Sat Nov 21, 2009 12:24 pm

Re: Problems subiect

Post by pit-PL »

You 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>&nbsp;	<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>
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Problems subiect

Post by RMcGirr83 »

Code: Select all

<FONT COLOR="#FFFFFF" ><font size="4">{postrow.POST_SUBJECT}</font></strong><FONT>
HTML hell!! Good grief.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
Thunde
Registered User
Posts: 263
Joined: Fri Aug 28, 2020 2:30 pm

Re: Problems subiect

Post by Thunde »

RMcGirr83 wrote: Fri Sep 11, 2020 11:32 am

Code: Select all

<FONT COLOR="#FFFFFF" ><font size="4">{postrow.POST_SUBJECT}</font></strong><FONT>
HTML hell!! Good grief.
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?
Thunde
Registered User
Posts: 263
Joined: Fri Aug 28, 2020 2:30 pm

Re: Problems subiect

Post by Thunde »

pit-PL wrote: Fri Sep 11, 2020 10:49 am You 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>&nbsp;	<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>
I tried but it's still the same
Thunde
Registered User
Posts: 263
Joined: Fri Aug 28, 2020 2:30 pm

Re: Problems subiect

Post by Thunde »

Mannix_ wrote: Fri Sep 11, 2020 10:34 am Well we aren't magicians around here so little bit more details would be helpful like name of the style your are using since it's not prosilver and also link to your board would be helpful as well to see what is going on.
My forum is games4all.ro

Thema: Milk ultimate version
User avatar
pit-PL
Registered User
Posts: 3212
Joined: Sat Nov 21, 2009 12:24 pm

Re: Problems subiect

Post by pit-PL »

Remove <p class="author"></p>.
User avatar
Mannix_
Registered User
Posts: 1857
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: Problems subiect

Post by Mannix_ »

First delete all your html color coding from the viewtopic_body.html file and add this to milk.css file instead at the bottom

Code: Select all

.postbody h3 a {
    color: #ffffff !important;
}
To make the gap smaller do what pit suggested or open content.css find

Code: Select all

p.author {
    margin-bottom: 0.6em;
    padding: 15px 0 30px 0;
    line-height: 1.2em;
    clear: both;
}
and adjust the padding, change 30px to whatever you like. After you finish upload the files and purge the cache in ACP and your browser
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
Thunde
Registered User
Posts: 263
Joined: Fri Aug 28, 2020 2:30 pm

Re: Problems subiect

Post by Thunde »

Mannix_ wrote: Sat Sep 12, 2020 7:20 am First delete all your html color coding from the viewtopic_body.html file and add this to milk.css file instead at the bottom

Code: Select all

.postbody h3 a {
    color: #ffffff !important;
}
To make the gap smaller do what pit suggested or open content.css find

Code: Select all

p.author {
    margin-bottom: 0.6em;
    padding: 15px 0 30px 0;
    line-height: 1.2em;
    clear: both;
}
and adjust the padding, change 30px to whatever you like. After you finish upload the files and purge the cache in ACP and your browser
H3 as a color has changed but the message did not rise above, another solution?
User avatar
Mannix_
Registered User
Posts: 1857
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: Problems subiect

Post by Mannix_ »

Thunde wrote: Sun Sep 13, 2020 6:29 am
H3 as a color has changed but the message did not rise above, another solution?
Did you did all the edits i suggested and purged the cache in ACP and your browser? Because I don't see any changes
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
Thunde
Registered User
Posts: 263
Joined: Fri Aug 28, 2020 2:30 pm

Re: Problems subiect

Post by Thunde »

Mannix_ wrote: Sun Sep 13, 2020 7:17 am
Thunde wrote: Sun Sep 13, 2020 6:29 am
H3 as a color has changed but the message did not rise above, another solution?
Did you did all the edits i suggested and purged the cache in ACP and your browser? Because I don't see any changes
Sure,do you have Skype,Discord?
User avatar
Mannix_
Registered User
Posts: 1857
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: Problems subiect

Post by Mannix_ »

If you did everything correctly there is nothing else I can do to help you
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Talk19Zehn
Registered User
Posts: 846
Joined: Tue Aug 09, 2011 1:10 pm
Contact:

Re: Problems subiect

Post by Talk19Zehn »

Hello, my impression is that the top and bottom were mistakenly confused: :?:

Please test this: content.css

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%;
}
The margin also adds to the impact.

Edit:
Please also check how the output behaves in the event of an answer. So there are several posts in one topic.

Regards
Best regards
phpBB3 Designs - My own works: Stylearea Ongray-Designs, Adventinducement-Calendar for phpBB
Post Reply

Return to “[3.3.x] Styles Support & Discussion”