Viewing 15 replies - 1 through 15 (of 18 total)
  • 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

    Thread Starter bamgraphics

    (@bamgraphics)

    So should I move the style.min?

    What are you trying to do?

    Thread Starter bamgraphics

    (@bamgraphics)

    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…”)

    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

    (@bamgraphics)

    Yes – I’ve done that. I’ve done find/replace. I’ve chopped 500 line peices out of it to isolate it. Nothing works.

    can you put your navigation and logo/masthead inside the header?
    will see next steps to fix it after that

    Thread Starter bamgraphics

    (@bamgraphics)

    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.

    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

    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

    (@bamgraphics)

    nope. I’ve tried this. You would think this would work. I did.

    can you make the above changes so that i can see what else can be modified?

    Thread Starter bamgraphics

    (@bamgraphics)

    I just did – it didn’t work – I’ve tried this.

    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

    (@bamgraphics)

    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)

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