nobinobiru
nobinobiru

Reputation: 792

Wordpress Can't reflect customize css file in production server

I wrote it like this at local server.

themes/twentytwelve/style.css

body {
background: red
}
...

It works correctly.But This code doesn't work at production server.

I don't know why it works.

I want to custom css file manually. Do You have any idea?

Thanks in advance.

my style sheet is

http://54.248.234.114/wp-content/themes/twentytwelve/style.css?ver=3.5.1

Upvotes: 0

Views: 46

Answers (1)

mrbubbles
mrbubbles

Reputation: 697

I'm assuming that the style is being overridden further down in the code. In this case line 1590.

Try adding your style in there.

Don't forget too that TwentyTwelve is a responsive theme, with styles that will kick in at certain widths through media queries.

Upvotes: 1

Related Questions