Some doubts

Hello.

I am starting to customize this theme for my site (rx-fitness.biz). I think it’s a great theme and your support group is amazing. I have several doubts, hope you can help me:

  1. How do I change the background color for the pages?
  2. How do I customize the font style and attributes?
  3. Is there a way to insert the side bar only in several pages?
  4. Is there a way to leave the menu visible when the user scrolls down to read the content?
  5. Do you have a live chat or a place to create support tickets?

Thanks in advance for your help.

Hello.

I haven’t received an answer to this post. Is there a place where I can get faster support?

Thank you.

Hello there,

I hope you are doing well today And I am sorry for the late response.

The background would have to be changed for each widget so you can use the following CSS code to change the background color by going to Appearance > Customize > Additional CSS and pasting it there.

.content-area-1, .content-area-2, .content-area-3, .content-area-4 { background: #000; }
  1. Font size would require some more detailed CSS because they are unique.

    p {
    color: #717171;
    font-family: “Karla”, sans-serif;
    font-size: 15px;
    }
    span {
    color: black;
    font-size: 20px;
    }

  2. Having the sidebar on specific pages would require you to add custom code and use the specific page IDs.

  3. The following CSS should allow you to have a fixed header:

    .site-header {
    position: fixed;
    width: 100%;
    z-index: 9999999;
    }

  4. I am sorry for the inconvenience but we do not have a live chat service,.

Best Regards,
Support

Hello.

Thank you for the reply. I implemented the codes but noticed some problems.

  1. I want to change the background in every page not only the widgets in the homepage. Can you help me with the rest of the code?
  2. I was able to modify the font but only in the paragraphs of each page, the headers remain the same. Is there a way to change everything?
  3. Fixed header looks good. However, it blocks the slider image. Is there a way to have only the menu bar fixed?

Thanks again for the help.

Hello there,

The following CSS can be used to make the changes you requested:


/*Page background color*/
.site-content {
    background-color: red;
}

/*Header font */
h2.custom-page-title {
    font-size: 30px;
    font-family: monospace;
}

As for the last issue, I am not sure what it is that aspect of the menu you want to have changed.

Best Regards,
Support