Forum

Permalink Browser Info Environment
Hi, I am trying to set up a forum to allow communication between users. I have used ortic forum which creates a forum page type and works as I would like, however it doesn't look right. The entry forms overhang the main page white area.

I realise that I am not explainging this too well but I am fairly in-experienced.

Is there anything I can do to make the forum fit the page?

Type: Pre-Sale
Status: In Progress
swinn
View Replies:
jordif replied on at Permalink Reply
jordif
Hi,

you can try adding the followin custom CSS (Page Design -> Theme -> Customize -> Custom CSS):

#content > .container .container {
    max-width: 100%;
}


If it does not help, please provide a link to your website or a screenshot.

Cheers,
swinn replied on at Permalink Reply 1 Attachment
swinn
Thanks Jordif, that works a treat on desktops an tablets, but doesn't seem to work too well on mobiles.
jordif replied on at Permalink Reply
jordif
Not sure if the forum itself is responsive. You can try switching to the default Elemental theme and see how this looks on mobile.

Some quick solutions would be:

1) Change the above code to:

#content > .container .container {
    max-width: 100%;
    overflow-x: auto;
}


This should avoid the page from overflowing, while users should still be able to scroll to the right to see the entire table.

2) You could remove some of the table columns on mobile, so the table fits the screen. You could try something like this:

@media (max-width: 767px) {
    .page-type-forum #content .table tr th:nth-child(2),
    .page-type-forum #content .table tr th:nth-child(3),
    .page-type-forum #content .table tr th:nth-child(4),
    .page-type-forum #content .table tr th:nth-child(5),
    .page-type-forum #content .table tr td:nth-child(2),
    .page-type-forum #content .table tr td:nth-child(3),
    .page-type-forum #content .table tr td:nth-child(4),
    .page-type-forum #content .table tr td:nth-child(5) {
        display:none;
    }
}


PLEASE NOTE that this may affect other tables in the forum pages (not sure if there are more tables), so make sure to test this thoroughly (I haven't).

If this does not work, you'll probably need help from a developer.

Cheers,
swinn replied on at Permalink Reply
swinn
Thanks very much for your help. It is now in a position where I can open it up to our members.

concrete5 Environment Information

# concrete5 Version
Core Version - 8.4.3
Version Installed - 8.4.3
Database Version - 20180716000000

# concrete5 Packages
4Concrete5 Dashboard (0.9.0), ABC Auto Reply forms (1.0.4), Anitya Theme (2.2), Background Image and Overlay (0.9.9), C5DK Merry Christmas (0.9.3), Cloneamental (0.9.3), Contact Form (No Links) (1.0), Cookies Notice (1.3.2), Countdown Timer (1.0.0), Customize Editing Interface (1.0.1), Cycle2 Slide Show (1.0.2), Deluxe Customizable Twitter Feed (1.0.4), DiscussionES Facebook Comments (1.1), Dynamic Images (1.2), Easy Image Gallery (1.4.2), Easy Image Slider (1.2), Easy Weather (1.0.0), eCommerce with Snipcart (1.3.4), EZ Bio (1.0), EZ Event (1.0), EZ Paypal (2.0.1), File Reader (2.0.1), Free Map (1.1.4), Fruitful (1.2), Hit Counter (1.0), Honest Websites Back To Top (1.1.0), Like This (0.9.1), List files from set (1.0.13), Login Block (0.9.3), Multiple files attribute (1.0.6), Neat (0.9.2), Ortic Forum (0.0.7), PDF Viewer (1.0.1), QRT Facebook Blocks (0.0.3), Random Image (1.0), Responsive Embed (1.0.1), Ronyd Expanded Search Bar (2.0), Share Me (0.9.1), Simple Audio Player (0.9.1), Simple Blog setup (1.0.1), Simple Gallery (1.0.7), Social Share Lite (2.1.3), Social Stream (1.2.1), Speed Analyzer (1.2.3), Stucco (2.1.6), Styled Maps (1.2.3), Supermint Theme (3.4.1.3), Tallacman's Bodacious Buttons (0.9.4), Tallacmans Copyright (0.9.3), Thumb Gallery (1.0.3), Twitter Embedded Timeline (0.9.7), Twitter Feed Block Components (1.0.1), Under Construction (1.0.1), Vivid Carousel (1.0.1), Wall Gallery Suite (1.0.1)

# concrete5 Overrides
elements/conversation/message/review.php, elements/conversation/message/add_form.php, elements/conversation/message/topic.php, elements/conversation/message/author.php, elements/conversation/message/pending.php, elements/conversation/message, elements/conversation/count_header.php, elements/conversation/display.php, elements/conversation/message.php, elements/conversation/editor/plain_text/message.php, elements/conversation/editor/plain_text, elements/conversation/editor/markdown/message.php, elements/conversation/editor/markdown, elements/conversation/editor/rich_text/message.php, elements/conversation/editor/rich_text, elements/conversation/editor, elements/conversation, single_pages/forum.php, tools/conversations/add_file.php, tools/conversations/delete_file.php, tools/conversations/edit_message.php, tools/conversations/get_rating.php, tools/conversations/message_page.php, tools/conversations/flag_message.php, tools/conversations/count_header.php, tools/conversations/rate.php, tools/conversations/delete_message.php, tools/conversations/view_ajax.php, tools/conversations/update_message.php, tools/conversations/add_message.php, tools/conversations/message_detail.php, tools/conversations

# concrete5 Cache Settings
Block Cache - On
Overrides Cache - On
Full Page Caching - On - In all cases.
Full Page Cache Lifetime - Every 6 hours (default setting).

# Server Software
LiteSpeed

# Server API
litespeed

# PHP Version
7.1.28

# PHP Extensions
bcmath, bz2, calendar, Core, ctype, curl, date, dom, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, imagick, imap, intl, ionCube Loader, json, libxml, litespeed, mbstring, mcrypt, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_mysql, pdo_sqlite, Phar, posix, readline, Reflection, session, shmop, SimpleXML, soap, sockets, SPL, sqlite3, standard, timezonedb, tokenizer, wddx, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib

# PHP Settings
max_execution_time - 3600
log_errors_max_len - 1024
max_file_uploads - 20
max_input_nesting_level - 64
max_input_time - 3600
max_input_vars - 8000
memory_limit - 2048M
post_max_size - 256M
sql.safe_mode - Off
upload_max_filesize - 256M
mysqli.max_links - Unlimited
mysqli.max_persistent - Unlimited
pcre.backtrack_limit - 1000000
pcre.recursion_limit - 100000
session.cache_limiter - <i>no value</i>
session.gc_maxlifetime - 7200
soap.wsdl_cache_limit - 5
opcache.max_accelerated_files - 7963
opcache.max_file_size - 0
opcache.max_wasted_percentage - 5

Browser User-Agent String

Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134

Hide Post Content

This will replace the post content with the message: "Content has been removed by an Administrator"

Hide Content

Request Refund

Click below to request a refund for License #8145332. Assigned to Fron Male Voice Choir.
Created on Aug 17 2018 at 8:30 am
.