• Resolved borav

    (@borav)


    I’m trying NeveVersion 2.2.0 and am very satisfied, because I could realize almost all in short time. Thanks for that.

    But: I like to use a (static) background image –> ok, works, but how can I change the backgound color of pages/posts? Currently it’s transparent. I can set the color for some blocks in the editor, but -example- not for the title. And it’s not funny to edit all block.

    I’m looking for defining a default “text background color”.

    If thats not possible: Any hint how I define that with a custom css (i’m not so familar with css but can try it)

    • This topic was modified 5 years, 8 months ago by borav.
Viewing 7 replies - 1 through 7 (of 7 total)
  • Depending upon which part you don’t want transparent the following CSS should target the page/post content

    .nv-single-page-wrap {
         background-color: white;
    }
    Thread Starter borav

    (@borav)

    Thank you for fast response! This is a fist successfull step.

    What css Do I need for the menu/sidebar, blog post and other content?

    It should already target the blog post area unless you have a screenshot of what you’re wanting to change? You can target the sidebar with the following

    .nv-sidebar-wrap {
         background-color: red;
    }
    Thread Starter borav

    (@borav)

    Ok here are two screenshots:

    What I want to achieve in something (done with a template I no longer want to use):
    https://www.dropbox.com/s/fffsjrkslumv9tr/Idea.png?dl=0

    Current state with Neve and the two CSS-additions:
    https://www.dropbox.com/s/u2kzb3ky3iw1qq5/Current.png?dl=0

    One of my wishes would be to be able to define a background color for content blocks.

    • This reply was modified 5 years, 8 months ago by borav.

    Are the Ihnalt and Seiten section each a widget as the text as the widget title with the white section below the widget content itself?

    By content block, are you referring to the section on the left hand side and you want the white area to be a different color?

    Thread Starter borav

    (@borav)

    >Are the Ihnalt and Seiten section each a widget as the text as the widget title
    Yes, both are widgets “Inhalt” and “Seiten” are the titels, and my wish is that the titles also have a background color

    content block and the sectionon the left can have the same color. I woud be very nice, if they could have different colors (ex. gray instead of white fot the side/widgets)

    Thread Starter borav

    (@borav)

    After some attempts here are the CSS additions, with which I came close to my ideas. Maybe it helps someone and maybe a suggestion for the next version of the template.

    ———————————–

    .nv-single-page-wrap,
    .nv-single-post-wrap,
    .nv-index-posts 
    {
      background-color: white;
      margin: 30px;
      border-radius: 10px;
    }
    .nv-sidebar-wrap {
     background-color: white;
     margin: 20px;
     border-radius: 10px;
    }
    • This reply was modified 5 years, 8 months ago by borav.
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Background color of pages and blog posts?’ is closed to new replies.