Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2255

[3.3.x] Styles Support & Discussion • Re: Top left logo positioning

$
0
0
If you're not using the extension provided above and you're referring to how your forum logo appears in portrait mode for mobile users via line 153 in theme\responsive.css,

The default float value is none.
To shift Left,

Code:

.logo {/* change display value to inline-block to show logo */display: inline-block;float: left;
to shift Right, which for our forum causes the logo to remain in portrait view (mobile users), shifted as far right as possible, bleeding off the screen to the left. Our logo's appearance is designed to work in this way without SVG or other dynamic image formats. In landscape responsive mode, the logo appears as normal to the left.

Code:

.logo {/* change display value to inline-block to show logo */display: inline-block;float: right;
I think this is what we're using, since it is code that is different from the default PHPBB code for responsive.css in each of our themes. BTW, if you don't want to have to modify page code after each update, use the Advanced Update option. We do. :idea: It's by far the easiest to use and doesn't require post-update changes. ;)

Each forum style that you have installed will have a responsive.css file.

Statistics: Posted by SQLnovice — Thu Jul 31, 2025 3:25 pm



Viewing all articles
Browse latest Browse all 2255

Trending Articles