• Resolved Pocokar

    (@pocokar)


    Hello, I have changed the overall background color on the site. Now just for the content pages I would like to have a white background for the content section to make the text easier to read? Everything else looks great, but just want to change the content section.

    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • Try:
    .main-wrapper {background-color:white}

    I tried

    .main-wrapper {background-color:white}

    but it didn’t seem to do anything.

    This worked for me.

    .entry-content{
    	padding: 20px;
    	background-color: white;
    	-webkit-border-radius: 15px;
    	-moz-border-radius: 15px;
    	border-radius: 15px;
    }
    Thread Starter Pocokar

    (@pocokar)

    ooo love it, the second set of code worked perfectly. Thanks soo much!

    How about if I want a bg image?

    How about if I want a bg image?

    I mean I want a pattern as an overall background

    /********************************************************************************************************************************/
    /* CHANGE THE BACKGROUND TO AN IMAGE?		(Body - Header - Navbar)											@rdellconsulting
    /********************************************************************************************************************************/ 
    
    /* CANNOT BE USED IN CUSTOMCSS PANEL (<3.0.9) */
    body {
    	/* Adjust the Image location '/wp-content/uploads/NAMEOFFILE.png' */
    	background:		url('/wp-content/uploads/NAMEOFFILE.png') repeat fixed 0 0 #FAFAFA !important ;
    }
    
    /* CANNOT BE USED IN CUSTOMCSS PANEL (<3.0.9) */
    .navbar-wrapper {
    	/* Adjust the Image location '/wp-content/uploads/NAMEOFFILE.png' */
    	background:		url('/wp-content/uploads/NAMEOFFILE.png') repeat fixed 0 0 #FAFAFA !important ;
    }
    
    /* CANNOT BE USED IN CUSTOMCSS PANEL (<3.0.9) */
    .navbar-inner {
        /* Adjust the Image location '/wp-content/uploads/NAMEOFFILE.png' */
    	background:		url('/wp-content/uploads/NAMEOFFILE.png') repeat fixed 0 0 #FAFAFA !important ;
    }
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Need to change page content well background’ is closed to new replies.