• Hello,
    Can you please help/advise on 3 things:
    1) How can I make the sidebar that is visible on EVERY other page of my website visible on the Blog page also?
    2) How can I make it so that a comment box is associated to the bottom of each post ALWAYS not just the bottom of the page (as there could be multiple posts on a page depending on the link).
    3) How can I make it that I can have certain headings appear as certain color codes (e.g., Heading 1 = 2E5366, Heading 2 = #09e4e3 etc.) on every post.
    Thanks,
    Echo

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi there,
    1.blog section has its own sidebar, so you will need to duplicate your page widgets to the blog sidebar also. Or open sidebar.php and replace ` dynamic_sidebar( ‘blog’ );
    withdynamic_sidebar( ‘page’ );`
    Open the default editor and then navigate to the /themes/olsenlight/ folder to find the file.
    2. Comments will appear only in single posts and not in post listings I am afraid.
    3. try this

    
    .single h1,.single h1 *{
    color:#2E5366;
    }
    .single h2,.single h2 *{
    color:#09e4e3;
    }
    

    in your custom CSS box under Customize->Additional CSS.

    Let me know if this works

Viewing 1 replies (of 1 total)
  • The topic ‘3 Things: Sidebar Visibility, Comment Boxes and Headings color changed’ is closed to new replies.