CleanSilver

It's really clean + few modifications - CleanSilver

Re: It's really clean + few modifications

by Mannix_ » Wed Apr 24, 2024 9:58 am

Sorry missed that one somehow :lol:

change the

Code: Select all

.postbody h3:not(.first) {
    display: none;
}
 .postbody h3:not(.first) ~ .content {
    margin-top: 25px;
}
to

Code: Select all

.postbody h3 {
    display: none;
}
 .postbody h3 ~ .content {
    margin-top: 25px;
}
to change the font size of post add

Code: Select all

.postbody .content{
	font-size: yourFontSize;
}
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
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: It's really clean + few modifications

by AbuHossam » Wed Apr 24, 2024 11:08 am

Great job sir, everything is fine..

Hang on...but I have more! :D

How can I add another one here?
image o.jpg
image o.jpg (13.34 KiB) Viewed 41 times
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by Mannix_ » Wed Apr 24, 2024 11:28 am

in topbar_header.html add the link after

Code: Select all

				{% if U_MCP %}
				<li data-last-responsive="true">
					<a href="{{ U_MCP }}" title="{{ lang('MCP') }}" role="menuitem">
						<i class="icon fa-gavel fa-fw" aria-hidden="true"></i><span>{{ lang('MCP_SHORT') }}</span>
					</a>
				</li>
				{% endif %}
example of a new link

Code: Select all

				<li data-last-responsive="true">
					<a href="xxx" title="xxx" role="menuitem">
						<i class="icon fa-gavel fa-fw" aria-hidden="true"></i><span>xxx</span>
					</a>
				</li>
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
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: It's really clean + few modifications

by AbuHossam » Wed Apr 24, 2024 11:50 am

Wow, this is excellent!

This will definitely serve as a valuable reference for me. My biggest issue with using templates is the updates, as all my modifications vanish with each new update.

Thank you so much, sir!
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by AbuHossam » Thu May 02, 2024 5:20 am

Sorry, sir.. but I noticed that this matter appeared again..
image P.jpg
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by Mannix_ » Thu May 02, 2024 8:03 am

Yeah because you removed the h3 tag from posts. You should mentioned stuff like that when you ask for help next time ;).

in custom.css
change

Code: Select all

 .postbody h3 ~ .content {
    margin-top: 25px;
}
to

Code: Select all

 .postbody .content {
    margin-top: 25px;
}
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
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: It's really clean + few modifications

by AbuHossam » Thu May 02, 2024 3:52 pm

Mannix_ wrote:Yeah because you removed the h3 tag from posts. You should mentioned stuff like that when you ask for help next time ;).
Wow, you are incredibly skilled and intelligent.

I'm very impressed with your abilities.

Thank you so much for your help.

I'm grateful for your assistance.
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by AbuHossam » Mon Jul 01, 2024 6:21 pm

Dear Sir,

"I'm not sure if it's best to continue this conversation or start a new one."

As you are aware, there is a new update available for phpBB. How can we update without losing all of our customizations?

Thank you for your assistance.
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by Mannix_ » Mon Jul 01, 2024 6:24 pm

Compere the clean updated version with your old customized one and apply the differences from updated to your. I would suggest using WinMerge to do this :)
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
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: It's really clean + few modifications

by AbuHossam » Fri Aug 09, 2024 3:18 pm

Hello Sir.. Again, thank you for this wonderful style.

And, please take a look at this image. It presents two models.
image 0.jpg
The first model shows the current state of internal links within topics. You will notice that the link does not appear directly before the plain text; rather, it appears below it. Additionally, you will observe that it is underlined and the color is not particularly eye-catching for visitors.

The second model, which I believe is superior, addresses these shortcomings. The link is right next to the text, without an underline, and in a color that is easily noticeable to visitors.

I would like to make two additional points:
- The link only appears below the text on mobile devices.
- The modification should be limited to this specific category of links, without affecting any other links in the style.

Thank you in advance.
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by Mannix_ » Fri Aug 09, 2024 3:44 pm

If i understand you correctly in colours.css find

Code: Select all

.postlink {
	border-bottom-color: #368AD2;
	color: #368AD2;
}

.postlink:visited {
	border-bottom-color: #5D8FBD;
	color: #5D8FBD;
}

.postlink:hover {
	background-color: #D0E4F6;
	color: #0D4473;
}
remove the border-bottom-color declarations. That will remove the underline from the links then adjust the color and background-color property to a color you want to use. Keep in mind that you can't use the same color for color and background-color property. This will only affect links in posts.
Next in link.css find

Code: Select all

.postlink {
	text-decoration: none;
	border-bottom: 1px solid transparent;
	padding-bottom: 0;
}
and replace border-bottom: 1px solid transparent; with display: inline; this should prevent links from jumping to a new line
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
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: It's really clean + few modifications

by AbuHossam » Fri Aug 09, 2024 4:13 pm

Wow! ♥
This is incredible, so fast!
You nailed it!
Thanks a million.
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by AbuHossam » Tue Sep 17, 2024 5:03 pm

Dear Sir,

We have recently received complaints from our visitors regarding the difficulty in finding the reply button on our forum. They seem to be confusing the [1] button with a social sharing button, assuming it's meant for sharing the topic on social media. As a result, many users have been attempting to reply to topics using the quote function or info icons [2].

Could you please kindly provide an update to resolve this issue by adding a clear "Reply" button in (3) or (4), and removing the [1]? This will help prevent further confusion among our users. [or] Alternatively, could you please provide instructions on how we can implement this change ourselves?

Please note that the [1] reply button is often obscured by Google AdSense ads.

Image
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am

Re: It's really clean + few modifications

by Mannix_ » Tue Sep 17, 2024 6:06 pm

in viewtopic_body.html viewforum_body.html and ucp_pm_message_header.html find and remove responsive-button
this will bring back the button in front of the one you marked no 4 :)
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
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: It's really clean + few modifications

by AbuHossam » Tue Sep 17, 2024 6:49 pm

Nice & Easy.. But not clear button, like:
image 1.jpg
image 1.jpg (2.53 KiB) Viewed 8 times
Or:
imagee 1.jpg
imagee 1.jpg (1.82 KiB) Viewed 8 times
Recent Topics in DB-UK Community – Where Every Passion Finds Its Place.
User avatar
AbuHossam
Registered User
Posts: 361
Joined: Sun Sep 02, 2018 7:24 am