Hello,
I have only been using Bricks and Winches for a few days to test and familiarize myself with them. I have two questions. Firstly: Why does the Bricks Builder background turn blue/gray instead of white after activating winches? And secondly, is the Winden Assistens plug-in necessary if you don’t want to work in the frontend? Out of the box, the plug-in has a bug in line 35 – I quickly fixed it myself. The website runs on a local DDEV platform without external access.
purchase_id:
65057
Uploaded files:
Winden Assistant is not updated for the latest Winden, so you need to disable it, and dont’ need it if you don’t work on front-end…
For Winden styles, you need to turn the preflight set to false in the Winden config (it is by default set to false already, if you didn’t change it) And the background issue will be solved, otherwise We need to see the Winden config…
Regards,
Mohammad Arshad
DPlugins Support
Okay, thanks for your quick reply.
No, I have not changed anything, the preflight is set to false.
The background in the Bricks builder is still as shown in the screenshot. I could probably overwrite this with my own CSS, but that’s not what the inventor intended.
The background should not be like this by default, it should be white as default, can you please provide us admin access or at least WP config styles and config tab content, so that we can check if the issue is coming from the settings or somewhere else ? Admin details would be better, do that by editing the ticket and put it in WP LOGIN secure field, otherwise the comment/replies are publicly visible…
Regards,
Mohammad Arshad
DPlugins Support
STYLES:
@tailwind base;
@tailwind components;
@tailwind utilities;
CONFIG
export default {
theme: {
extend: {
colors: {
clifford: ‘#da373d’,
}
}
},
corePlugins: {
preflight: false,
}
};
tailwind.config.js
const wizzardPreset = {
“theme”: {
“extend”: {
“fontFamily”: {
“display”: “Oswald, sans-serif”,
“body”: “Exo, sans-serif”
},
“colors”: {
“cps-primary”: {
“100”: “#faffe5”,
“200”: “#f0ffb3”,
“300”: “#e6ff80”,
“400”: “#ddff4d”,
“500”: “#d3ff1a”,
“600”: “#ceff00”,
“700”: “#90b300”,
“800”: “#678000”,
“900”: “#3e4d00”,
“1000”: “#151a00”
},
“cps-bg”: {
“100”: “#f2f2f2”,
“200”: “#d9d9d9”,
“300”: “#bfbfbf”,
“400”: “#a6a6a6”,
“500”: “#8c8c8c”,
“600”: “#737373”,
“700”: “#595959”,
“800”: “#404040”,
“900”: “#1a1a1a”,
“1000”: “#0d0d0d”
}
},
“fontSize”: {
“xs”: “clamp(11.11px, -0.30vi + 12.08px, 8.44px)”,
“sm”: “clamp(13.33px, -0.08vi + 13.57px, 12.67px)”,
“base”: “clamp(16px, 0.34vi + 14.91px, 19px)”,
“md”: “clamp(19.20px, 1.06vi + 15.82px, 28.50px)”,
“lg”: “clamp(23.04px, 2.24vi + 15.87px, 42.75px)”,
“giga”: “clamp(27.65px, 4.15vi + 14.38px, 64.13px)”,
“mega”: “clamp(33.18px, 7.16vi + 10.27px, 96.19px)”
}
}
}
};
export default {
presets: [wizzardPreset],
theme: {
extend: {
colors: {
clifford: ‘#da373d’,
}
}
},
corePlugins: {
preflight: false,
}
};
The settings are correct, they won’t be interfere with the background,
Can you please let us know if the the background is changed inside bricks only or on the frontend as well, and please create a login access with Admin access for further investigations.
Regards,
Mohammad Arshad
DPlugins Support
no, the background is only like this in the brick builder or under the bricks preview. if i look at the page in the frontend, the bg is white. as i said, i develop here locally via ddev, so unfortunately the page is not accessible externally.
WP-Config:
<?php
/**
* #ddev-generated: Automatically generated WordPress settings file.
* ddev manages this file and may delete or overwrite the file unless this comment is removed.
* It is recommended that you leave this file alone.
*
* @package ddevapp
*/
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
/** Authentication Unique Keys and Salts. */
define( 'AUTH_KEY', 'WyffPmxrkljTopBAGKfqAVdNPuAlZLUecBQCrXSOlWaXDfPrlTAkfhMUftjiZPdH' );
define( 'SECURE_AUTH_KEY', 'WWbVzvIfzBDTgQDpLTeauNyiRmjuIeEkGkRGyaSIqnPcQKxYvpCLLDTxeJVpRkpu' );
define( 'LOGGED_IN_KEY', 'azFGLhHcPTDVZOWRcLaZmeWPRBLWGGNnJfnSTqYctfkbdUgfdHdVdYyMQuFfPFYB' );
define( 'NONCE_KEY', 'WPCHXUFChNuVlhaWPOfwLnLOPCcOHTtaxMEQMhjdsCmCvvdVhBhEQWGgzYcFIpBC' );
define( 'AUTH_SALT', 'NFgVImfGacbqdLrGVvfikEFCtpXVnJoUYfMZtQEIcnZJEGpfLRfZTysuKCNPLLZx' );
define( 'SECURE_AUTH_SALT', 'ImfktFDEDQHvDXdFSSaEirGUGGEXbMaTsHvKkswWnZsoxwLoWBcGVhtHysgpWWJJ' );
define( 'LOGGED_IN_SALT', 'iplAvrtgMdsuyMCnqwZCsESZSqKognIIjKwwIJJljmZALZHmrnWHLwlaRsajMyoE' );
define( 'NONCE_SALT', 'hvZzIxlVAxYGOGySjRqgCiAysNncCDxCpikshhAAnYuRwIJeJRfWsQHnQvtHZUuv' );
/* Add any custom values between this line and the "stop editing" line. */
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
defined( 'ABSPATH' ) || define( 'ABSPATH', dirname( __FILE__ ) . '/' );
// Include for settings managed by ddev.
$ddev_settings = __DIR__ . '/wp-config-ddev.php';
if ( ! defined( 'DB_USER' ) && getenv( 'IS_DDEV_PROJECT' ) == 'true' && is_readable( $ddev_settings ) ) {
require_once( $ddev_settings );
}
/** Include wp-settings.php */
if ( file_exists( ABSPATH . '/wp-settings.php' ) ) {
require_once ABSPATH . '/wp-settings.php';
}
The site has been completely redesigned. No special settings have been made. Also under Bricks everything is set to default settings
Please make a backup with AIO migration and provide it, otherwise we can’t help further. We don’t know what is causing it as we couldn’t replicate it on our localhost…
I have found out: If the setting “Dequeue Styles: Bricks Builder” is activated in the winch plug-in, it causes the background to turn gray instead of white.
Found it as well, Bricks uses gray as default, and with its front-end file it overrides it to white, which we dequeue with our function.
For workaround, you need to set Bricks Editor > Theme Styles > General > Site Background > make it white
Regards,
Mohammad Arshad
DPlugins Support