Apply theme options to a single page?

Support Area Forums Progress Apply theme options to a single page?

Viewing 5 posts - 1 through 5 (of 5 total)
URL to the page in question:
  • Author
    Posts
  • #7800
    George Brown
    Participant

    Is it possible to change a theme option for one page only? I want to change the content background color and content text color for the Sponsor pages (because most logos come with a white background and therefore don’t look good on the default black background), is that possible?

    #7805
    Bill Robbins
    Moderator

    George,

    It is possible to add styling to just one page. Here’s how to do that:

    1. Go to the styling tab of the theme options page.
    2. At the top of the page select “yes” to include custom styling.
    3. Scroll down to the Custom CSS box and paste this:
      
      .page-template-page-sponsor-php .content {
      	background-color: #fff;
      	color: #000;
      }
      
      .page-template-page-sponsor-php .widget {
      	background: transparent;
      	color: #000;
      }
      
    4. Update your settings.

    That will change the content area to white and the text to black.

    If you have any questions, just let me know,
    Bill

    #7917
    Michelle
    Participant

    I’m also trying to do the same thing for the pages that have the “Full Width” template attribute in Responsive Visual; I want them to be the same color as the “Home” attribute (it looks like it’s #333333). Can you help me?

    I’ve gone into Theme Options (there’s no option at the top of the page to select to include or not include custom styling, is that inherent now?) and entered the following to no avail:

    .page-template-page-full-php .content {
    background-color: #333;
    color: #000;
    }

    .page-template-page-full-php .widget {
    background: transparent;
    color: #333;
    }

    #7918
    Bill Robbins
    Moderator

    MIchelle,

    Thank you for your business first of all. I’ve started changing the styling so you no longer have to select to include it. One less step is good for everybody.

    The Responsive Visual theme is made a bit differently from Progress. To change the full width template’s colors use this CSS Snippet:

    
    #content.full {
    	background-color: #999999;
    	color: #ffffff;
    }
    

    That will make the background a dark gray and the text white. Just replace the color codes above with the colors you’d like to use. Save your settings and that should give you a new background and text color.

    If you have any questions or trouble, just let me know,
    Bill

    #7920
    Bill Robbins
    Moderator

    No problem. Since you’ve uploaded your white logo and sent me a link to it, I’ve just updated the code for you. Use this instead of the snippet above and you won’t have to change the URL for your image:

    If you need me to make the change for you, just send a login for your site to support@organizedthemes.com

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Apply theme options to a single page?’ is closed to new replies.