• Hello,
    I’m using Givingpress-Lite template for our non profit foundation in Poland.
    Template works fine. Currently on the main page we have static page attached, it’s configured in the Settings->Reading -> Front Page Displays -> Static Page.
    In this configuration the Default Sidebar is displayed properly, means that background color of the Sidebar is formatted properly (gradiend background) according to the .sidebar css settings (background-image: -webkit-gradient(linear, left bottom, left top, from(rgba)…
    The issue is when I try to configure and publish Posts on the static page, it’s configured in: Settings->Reading -> Post page, in this place static page is selected.
    All new posts are published on the selected static page properly, but in this case Default Sidebar is not formatted according to the .sidebar css settings.
    You can check this on my website, main page works fine:
    https://www.mds.koszalin.pl/
    here is an issue:
    https://www.mds.koszalin.pl/aktualnosci/

    Can you please advise how to fix the issue with Default Sidebar formatting?
    Thank you in advance.

    Krzysztof Krakowski

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter kkrakowski

    (@kkrakowski)

    Hello,

    Does anybody know how to fix this issue?

    Regards,
    Krzysztof

    Hi.,

    Try this css

    .sidebar {
        background: #f6f6f6 !important;
        padding: 35px !important;
    }

    If you want further help I’ll be happy to assist.

    Thanks.,
    Rajan V

    Thread Starter kkrakowski

    (@kkrakowski)

    Hi Rajan V,

    Thanks for your feedback.
    Your hint solved issue partially, now on both pages background color for the sidebar is the same, but gradient background doesn’t work.
    It’s not big issue, I can use uniform background color, but gradiend used so far looks much lightly.

    Below code is the curent css for sidebar.

    /************************************************
    *	12.	Sidebar
    ************************************************/
    
    .sidebar {
    	font-size: 0.9em;
    	margin: 0px;
    	padding: 24px;
    	border-radius: 0px 3px 3px 0px;
    	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.00)),to(rgba(0, 0, 0, 0.04)));
    	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.04));
    	background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.04));
    	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.04));
    	background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.04));
    	background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.04));
    }

    Thanks,
    Krzysztof

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Posts on the static page vs Default Sidebar background color’ is closed to new replies.