Sponsored Content
The Lounge What is on Your Mind? Mobile: Advanced Forum Statistics to Forum Home Page Post 303038865 by Neo on Monday 16th of September 2019 04:55:48 AM
Old 09-16-2019
Hey Akshay,

Did not implement anything fancy yet, because all the mobile CSS needs to be redesigned (and the inline CSS moved to external files, etc.)

However, in the meantime, I did wrap a bunch of content with the most basic Bootstrap card classes and adjusted some margins, rounded out some title blocks with the rounded class, etc.

When I did the original mobile CSS, I was in a huge time crunch and had not implemented a single Bootstrap class at the time, so we need to go back and redesign all the mobile CSS with Bootstrap, and clean up the CSS mess on mobile.

I agree that, in the meantime, mod_pagespeed helps.

Thanks Again!
This User Gave Thanks to Neo For This Post:
 

4 More Discussions You Might Find Interesting

1. What is on Your Mind?

Forum Update: Disabled Home Page Forum Statistics for Guests (Not Registered)

Just a quick update; to speed up the forums, I have disabled the forum statistics on the home page for non registered users. No changes for registered users. (0 Replies)
Discussion started by: Neo
0 Replies

2. What is on Your Mind?

JQuery and CSS Flex Code for Responsive Forum Home Page

So far, I have completed making the home page more responsive (except for the forum stats at the top and the WOL box at the bottom, they still use scroll bars). xevV3_iZ8-s For full screen use the link below and set your YT resolution to 1080p60 HD https://youtu.be/xevV3_iZ8-s Here is... (1 Reply)
Discussion started by: Neo
1 Replies

3. Web Development

PHP Changes to WOL for New Forum Home Page

Wrote some PHP code today to make the Who Is Online (WOL) in the forums work properly with the new home page: Wrote this global plugin to add the location to both the user table (for members) and session table (for guests + registered users) <?php if (THIS_SCRIPT != 'misc' and... (0 Replies)
Discussion started by: Neo
0 Replies

4. What is on Your Mind?

Quick Bootstrap Reformat of Forum Staff Page

This page still needs work (complete redesign), but in the meantime, I quickly added some Bootstrap classes to "pretty it up": https://www.unix.com/staff.php https://www.unix.com/staff.php (0 Replies)
Discussion started by: Neo
0 Replies
CSS::DOM::Value::List(3pm)				User Contributed Perl Documentation				CSS::DOM::Value::List(3pm)

NAME
CSS::DOM::Value::List - CSSValueList class for CSS::DOM VERSION
Version 0.14 SYNOPSIS
# ... DESCRIPTION
This module implements objects that represent CSS list property values. It implements the DOM CSSValueList interface. You can access the individual elements of the list using the "item" and "length" methods, or by using it as an array ref. METHODS
If you need the constructor, it's below the object methods. Normally you would get an object via CSS::DOM::Style's "getPropertyCSSValue" method. CSSValue Interface cssText Returns a string representation of the attribute. Pass an argument to set it. cssValueType Returns "CSS::DOM::Value::CSS_PRIMITIVE_VALUE". CSSValueList Interface item Returns the 'primitive' value at the given index. length Returns the number of values in the list. Constructor You probably don't need to call this, but here it is anyway: $val = new CSS::DOM::Value::List:: %args; The hash-style arguments are as follows. Only "values" is required. values This must be an array ref containing the individual values to be stored in the list. The individual elements can be value objects or array refs of arguments to pass to "new CSS::DOM::Value::Primitive". E.g., [ [type => CSS_PX, value => 20], [type => CSS_PERCENTAGE, value => 50], [type => CSS_PERCENTAGE, value => 50], [type => CSS_PX, value => 50], ] css CSS code used for serialisation. This will make reading "cssText" faster at least until the value is modified. separator The value separator used in serialisation. This is usually ' ' or ', '. An empty string or "undef" is treated as a space. owner The style object that owns this value; if this is omitted, then the value is read-only. The value object holds a weak reference to the owner. property The name of the CSS property to which this value belongs. "cssText" uses this to determine how to parse text passed to it. This does not apply to the sub-values of colours, counters and rects, but it does apply to individual elements of a list value. SEE ALSO
CSS::DOM CSS::DOM::Value CSS::DOM::Value::Primitive CSS::DOM::Style perl v5.10.1 2010-12-10 CSS::DOM::Value::List(3pm)
All times are GMT -4. The time now is 05:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy