Updating CSS files or any CSS doesn't save or update on the site

If i edit the following CSS files or ANY CSS files in that case they don’t save or update on the site. I have tried several times to edit -6-layout.css and skin-55b4fdeb39938.css - I also tried to edit the CSS and then update a setting in the customiser panel and save in order for the cache to update but it’s failed.

Hey Chris,

Welcome to the BB forums! Those CSS files are generated dynamically while you are creating your layout using the BB plugin or playing around with the Theme Customizer. If you want to add custom CSS to your site, I would suggest placing it under Theme Customizer > Code > CSS Code or directly in the style.css file under Appearance > Editor.

Hope this helps!

Ben

Thank you for your reply Ben.

If you go ahead and visit my website: http://www.chris.money
You will find a section that refers to “About Mike”, well if you shorten your display (mobile for example) the background fits the screen because of the background-position element in CSS.

`.fl-node-55b505e67bd0b .fl-row-content-wrap {
background-image: url(http://www.chris.money/wp-content/uploads/2015/07/bg2.png);
background-repeat: no-repeat;
background-position: center center;
background-attachment: scroll;
background-size: cover;
}

This is located in 6-layout.css and whenever I try and remove it and update the CSS it doesn’t update the frontend.

Hey Chris,

You won’t be able to change anything on that file since it is generated dynamically. Basically, it contains all of the settings you’ve set in the Page Builder. If you want to change the background-position, go over to the Row Settings and change the position from Center to anything you like. Check the screenshot below for reference.
http://imgur.com/mThcsWF

Ben

I don’t want it to position any of those, I would like it set as none and I can’t do that.

I have fixed that issue.

Next issue, I want a fixed header at all times not just when you scroll down.

Like this:
http://gyazo.com/0c65581b6950340aba91660f1afb2879

Hey Chris,

You can’t set the background-position to none. The default value is the left top option that you see there and you can set it to that. You can find more information about the background-position property here.

Hope this helps!

Ben

Sorry but our theme doesn’t offer that. You’ll either have to write custom CSS to achieve that or use a 3rd party plugin. I don’t think it makes much of a difference though. What’s important is the header elements(logo and menu) are visible no matter what part of the page the viewer is looking at. :slight_smile:

Ben

Which .php file is the current header located in, not the fixed header the normal header? I noticed header.php is full of do_action’s ?

Hey Chris,

It would depend on the layout you are using. Inside the includes folder you will see nav-bottom, nav-right and nav-centered. You can just copy those files inside the same folder on your child theme and you should be able to modify it with no problems.

Ben