Skip to main content
Recent Posts
12
Chit Chat / How's everybody?
Last post by ahrasis -
Happy Islamic New Year to those celebrating! Also, just four more days until Q3 2025 kicks off.

So, how's everybody doing? Hope you're all awesome!

I'm actually planning to get active online again. My big idea? Making old forum software a great tool for building a matured society again.

And yeah, I know I've got a lot to practice, since most of my knowledge and skills have been left behind for quite a long time.

Wish me luck! And see you around soon.
13
Bug Reports / Re: can't to to the main page after installation please help.
Last post by Steeley -
Quote from: arbitrarys – Experiencing a 500 error after installing ElkArte can be frustrating. Did you check server logs? It might relate to permissions or PHP versions. Troubleshooting feels like a tough Retro Bowl match, doesn't it? Each attempt to fix the issue is like a strategic play, hoping to get that winning touchdown. Ensuring your hosting environment meets ElkArte's requirements is key to victory.

First, make sure you're not trying to install a  pre-beta development version  :nerd:
14
Bug Reports / Re: can't to to the main page after installation please help.
Last post by arbitrarys -
Experiencing a 500 error after installing ElkArte can be frustrating. Did you check server logs? It might relate to permissions or PHP versions. Troubleshooting feels like a tough Retro Bowl match, doesn't it? Each attempt to fix the issue is like a strategic play, hoping to get that winning touchdown. Ensuring your hosting environment meets ElkArte's requirements is key to victory.

15
Bug Reports / Re: Mark as read on index
Last post by 6438ray -
Hey everyone, is anyone else experiencing issues with the "Mark All Messages as Read" button? It's not working for me on the ElkArte site. I've tried refreshing multiple times, but the messages stubbornly remain New.
18
Theme development / Re: Besocial theme: how increase the default character’s size.
Last post by Spuds -
There are two ways to increase the base font size.

In your custom_BeSocialHawkfriend.css you can do one of the following:

First the line font: 90%/130% Helvetica, Arial, "Nimbus Sans L", sans-serif; is in the body tag which is fine.  That 90% means all fonts and children of the body tag (which is about everything) will be font-size: 90%;  of the base font, or in this case .9*16px = 14.4px  Change that 90 to 95 for a 15.2px base font or 100% for a 16px font. 

Many other areas fonts will be relative to the base but some are hard coded with a font-size: attribute, those would have to individuality addressed.

The other way would be to add a font-size: 17px; to the html section of that style sheet.  This would then be .9*17=15.3px font size.  There currently is no font size defined in the html section, so its just a default 16px.