Title: can&#039;t find code for specific css in theme
Last modified: August 31, 2016

---

# can't find code for specific css in theme

 *  [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/)
 * Hi.
 * on [http://www.PlummerWigger.com](http://www.PlummerWigger.com), there are many
   items that I just can’t seem to access. There are two .css – style.css and style.
   min.css
 * The first is to remove the space the head is floating in (space on top and bottom)
   
   The second is to access the #header .entry-header (or the text:New York State…”)
 * Can’t seem to get ahold of them.
 * bam
 * [https://wordpress.org/plugins/css/](https://wordpress.org/plugins/css/)

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/page/2/?output_format=md)

 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133937)
 * you can see what CSS files has been lined in the head section of your html source.
   the style.min is in your themes/unique directory
 * [http://plummerwigger.com/wp-content/themes/unique/style.min.css](http://plummerwigger.com/wp-content/themes/unique/style.min.css)
 *  Thread Starter [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133957)
 * So should I move the style.min?
 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133967)
 * What are you trying to do?
 *  Thread Starter [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133972)
 * The first is to remove the space the head is floating in (space on top and bottom)
   
   The second is to access the #header .entry-header (or the text:New York State…”)
 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133988)
 * your header element is empty
 *     ```
       <header id="header">
   
       			<hgroup id="branding">
   
        </hgroup>
       			<!-- #branding -->
   
       		</header>
       ```
   
 * i dont know why,. if you dont need it you can remove it or add youe logo and 
   navigation inside the header
 *  Thread Starter [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133992)
 * Yes – I’ve done that. I’ve done find/replace. I’ve chopped 500 line peices out
   of it to isolate it. Nothing works.
 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133993)
 * can you put your navigation and logo/masthead inside the header?
    will see next
   steps to fix it after that
 *  Thread Starter [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7133996)
 * I don’t want to do anything that drastic. I cant even change the font on this.
   I put in font-family: serif; and nothing.
 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7134000)
 * in your style min.css
 *     ```
       #header,#main,#footer{
       	margin:0 auto 25px; -- change this line
       	padding:0 25px;
       	-moz-box-sizing:border-box;
       	box-sizing:border-box
       }
       ```
   
 * to
 *     ```
       #header,#main,#footer{
       	margin:0 auto;
       	padding:0 25px;
       	-moz-box-sizing:border-box;
       	box-sizing:border-box
       }
       ```
   
 * that will remove space from the header and top of window
 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7134002)
 * in same css file
 *     ```
       #menu-primary,#menu-secondary,#menu-subsidiary{
       	margin:0 auto 25px --> change this line
       }
       ```
   
 * to
 *     ```
       #menu-primary,#menu-secondary,#menu-subsidiary{
       	margin:0 auto;
       }
       ```
   
 * that will remove the gap between the menu and main content
 *  Thread Starter [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7134004)
 * nope. I’ve tried this. You would think this would work. I did.
 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7134009)
 * can you make the above changes so that i can see what else can be modified?
 *  Thread Starter [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7134011)
 * I just did – it didn’t work – I’ve tried this.
 *  [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * (@bkdimri)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7134012)
 * i still see the old css. If you are not willing to modify your css there nothing
   i can do to help you.
 *  Thread Starter [bamgraphics](https://wordpress.org/support/users/bamgraphics/)
 * (@bamgraphics)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/#post-7134016)
 * So here you can see that I can disable both style and style.min completely. It’s
   just that any changes made don’t stick.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/page/2/?output_format=md)

The topic ‘can't find code for specific css in theme’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/css.svg)
 * [CSS](https://wordpress.org/plugins/css/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/css/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/css/)
 * [Active Topics](https://wordpress.org/support/plugin/css/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/css/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/css/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 18 replies
 * 2 participants
 * Last reply from: [bkdimri](https://wordpress.org/support/users/bkdimri/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/cant-find-code-for-specific-css-in-theme/page/2/#post-7134025)
 * Status: not resolved