• Resolved tkreeft

    (@tkreeft)


    I want to add this style to the CSS of the Gwolle guestbook. On mobile phones are the input fields very small. I hade solved the problem by making this style:

    @media (min-width: 821px) {
    	#gwolle_gb div.label {
    		width: 80%;
    	}
    	#gwolle_gb div.input {
    		width: 40%;
    	}
    }
    

    Where can I put this for effect? In the developer mode in Chrome can I change wp-content/plugins/gwolle-gb/frontend/css/gwolle-gb-frontend.css and it works. But when I change it in the source file it don’t work.

    I want to change this code:

    
    #gwolle_gb div.input {
    	width: 40%;
    	border: 0px;
    }
    

    to:

    @media (min-width: 821px) {
    	#gwolle_gb div.label {
    		width: 80%;
    	}
    	#gwolle_gb div.input {
    		width: 40%;
    	}
    }
    #gwolle_gb div.input {
    	border: 0px;
    }
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi, there was a mistake made somewhere in the 2.3 series.
    The Mobile CSS is fixed in the development version.
    You can either download it already, or wait till later this week when it will be released.

    I tested it with the new version 2.4. The problem continues. widget looks narrower
    Ege Sümer

    • This reply was modified 6 years, 8 months ago by raozkardes.
    Plugin Author Marcel Pol

    (@mpol)

    Hmm, I should have tested better with floats and without.
    It will be improved in the next version.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom style of input fields’ is closed to new replies.