How to increase prosilver .postbody width

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
Lsha
Registered User
Posts: 113
Joined: Mon Feb 25, 2019 10:38 am

How to increase prosilver .postbody width

Post by Lsha »

theme/content.css

Line: 231

Code: Select all

.postbody {
	padding: 0;
	line-height: 1.48em;
	width: 76%;
	float: left;
	position: relative;
}
Line: 698

Code: Select all

/* Poster profile block
----------------------------------------*/
.postprofile {
	margin: 5px 0 10px 0;
	min-height: 80px;
	border: 1px solid transparent;
	border-width: 0 0 0 1px;
	width: 22%;
	float: right;
	display: inline;
}
i changed .postbody width: 82% and .postprofile width: 16%

postprofile wide change fine. but .postbody remain same. could you please guide me where i made mistake?

edit:
after i add !important, css working. is it mixing with other css part?

Code: Select all

.postbody {
	padding: 0;
	line-height: 1.48em;
	width: 82% !important;
	float: left;
	position: relative;
}
User avatar
Brf
Support Team Member
Support Team Member
Posts: 53601
Joined: Tue May 10, 2005 7:47 pm
Location: {postrow.POSTER_FROM}

Re: How to increase prosilver .postbody width

Post by Brf »

There is one in responsive.css too
Lsha
Registered User
Posts: 113
Joined: Mon Feb 25, 2019 10:38 am

Re: How to increase prosilver .postbody width

Post by Lsha »

Brf wrote: Wed Oct 09, 2019 8:17 pm There is one in responsive.css too
ah thank you.

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