[Style Support] SE Square Left

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!
Post Reply
User avatar
cisco007 Online
BBCoder VI
BBCoder VI
Posts: 1,051
Joined: 16 Mar 2010, 16:14
Local time: 05 Sep 2025 14:30
Last active: -
Location: Don't really know!

[Style Support] SE Square Left

Post by cisco007 »

Quick question, i've installed this style since it came out, but now that everything is mobile and stuff, since this inherits prosilvers responsive.css, how would i go about making the board smaller? so i copy the responsive.css to this style and change it there?

also, if i change the wrap size, will that break the responsiveness?
User avatar
Stoker Offline
Site Admin
Site Admin
Posts: 4,557
Joined: 12 May 2008, 21:26
Local time: 05 Sep 2025 20:30
Last active: -
Favourite EXT: Forum Goal
Location: Denmark
Contact:

[Style Support] SE Square Left

Post by Stoker »

The responsive will not be affected if you change the width in se_square.css
Se Square is responsive. If you want to change anything just add new rules to the stylesheet.

BTW let me know if you want the latest version with the dark/light toggle https://demo.phpbb3bbcodes.com/index.php?style=2
Last edited by Stoker on 05 Sep 2025, 03:43, edited 1 time in total.
Reason: -
~ The greatest achievement in life is to inspire ~
Regards Stoker
User avatar
cisco007 Online
BBCoder VI
BBCoder VI
Posts: 1,051
Joined: 16 Mar 2010, 16:14
Local time: 05 Sep 2025 14:30
Last active: -
Location: Don't really know!

[Style Support] SE Square Left

Post by cisco007 »

i will as soon as i can figure this crap out! i am trying to make the board, with a blue background, a border and max-width of 1010px, but it breaks when i check it on mobile view.
maybe the

Code: Select all

min-width:
is messing it up
like i said i've been out of coding for about 12 years or so and i've been trying to learn all the changes in a month.
see if someone can help me out.

here is my css:

Code: Select all

body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282 !important;
	background-color: #FFFFFF !important; 
	background-color: #2fadea !important;
	background-image: url("./images/back.jpg") !important;
	background-repeat: repeat-x;
    background-attachment:fixed;
	font-size: 10px;	
	margin: 0;
	padding: 10px 10px 10px;
}
#wrap {
	border: 2px solid #047ab4;
	background-color: #FFFFFF;
    padding: 20px 20px;
	min-width: 625px;
	max-width: 1010px;
	margin: 0 auto;
}
i just took out the

Code: Select all

min-width:
and it looks fine.
i guess that broke the responsiveness, because once it goes into mobile view it picks up the @media from the responsive.css and it takes over.
Now it's on to try to make a logo show up on desktop and mobile.
User avatar
Stoker Offline
Site Admin
Site Admin
Posts: 4,557
Joined: 12 May 2008, 21:26
Local time: 05 Sep 2025 20:30
Last active: -
Favourite EXT: Forum Goal
Location: Denmark
Contact:

[Style Support] SE Square Left

Post by Stoker »

Yes, min-width will destroy responsive.
About the body. Move everything to #wrap that isnt background image related.

Logo is easy. Just look in the default css files. Common or content i think.
~ The greatest achievement in life is to inspire ~
Regards Stoker
Post Reply