This topic contains a post which is marked as Best Answer. Press here if you would like to see it.
*

KaloSex

  • ****
  • 139 posts
Topic titles
« on: September 06, 2023, 01:01:59 PM »
The topic titles are 33 characters which is very small. What file do i need to edit to allow to show up more characters on titles when a user browsing the forum?

*

MB Themes

Re: Topic titles
« Reply #1 on: September 06, 2023, 08:20:17 PM »
Its probably user.css using white-space:nowrap;
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

KaloSex

  • ****
  • 139 posts
Re: Topic titles
« Reply #2 on: September 06, 2023, 09:00:30 PM »
I think you cut it and save it to mysql cutted because when i check the source code in front in forum i see something like this on topic list:

<a href="https://www.kalosex.com/el/forums/topic/trelo-sex-sto-gymnastirio-i-archi-t17">Τρελό σεξ στο γυμναστήριο!! - ...</a>   (thats a link to a forum topic)


So it seems like it's cutted and saved on mysql and added the three dots in the end. I will check the mysql and will come back to this

Marked as best answer by KaloSex on September 08, 2023, 01:56:39 PM
*

MB Themes

Re: Topic titles
« Reply #3 on: September 07, 2023, 10:17:58 AM »
I see.
Go to form/board.php
Find line:
Code: [Select]
<a href="<?php echo frm_topic_url($topic); ?>"><?php echo osc_highlight($topic['s_title'], 30); ?></a>
Replace with:
Code: [Select]
<a href="<?php echo frm_topic_url($topic); ?>"><?php echo osc_highlight($topic['s_title'], 90); ?></a>
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots