Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #58542
    Laura Pio
    Member

    Hi Sakin!
    I hope you and your family are doing better now. 🙂

    My site is laurapiofotografia.com.br

    1- I’d like to know how to add a different background to each of my pages. I used codes like the following on the free version:

    body {
    background: url(‘images/background.jpg’);
    }

    body.page-id-2 {
    background-image: url(‘http://laurapiofotografia.com.br/wp-content/uploads/caes3.jpg’) !important;
    background-repeat: repeat-y;
    }

    I used something like this on “edit css” and it worked perfectly but now it doesn’t work on the pro version. I can’t change the background on the frontpage either (on free version, I could add a background to the promotion headline and to my latest post but now I just can add a background to my featured content…the rest is just filled with color).

    2- I also need to know how to remove the toggle from the other pages and leave it just on the frontpage.

    Thanks in advance!

    #58552
    Sakin
    Keymaster

    @Laura Pio: Yes, we are doing fine. Thanks for supporting us.

    1. You default background should be from “Appearance => Background”, and change as per your need. I see currently you have this image as default background http://laurapiofotografia.com.br/wp-content/uploads/flormetal2leveee.jpg. Next, you should add like in free version. That’s fine. Free and Pro version are same.

    But looks like you have added color or content and all. So, it’s not transparent to show that. Can you let me know what are the css that you have in “Appearance => Customize => Theme Options => Custom CSS” box.

    Also let me know, where you want these background image to show. For example, if you want to show in your content area then, your content content area background needs to be transparent

    #content {
        background-color: transparent;
    }
    #58559
    Laura Pio
    Member

    Hi, please see if you can understand what I need on this image. Thank you. http://laurapiofotografia.com.br/wp-content/uploads/sakin.jpg

    #58570
    Sakin
    Keymaster

    1. For masthead to display only in homepage, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #masthead { display: none; }
    .home #masthead { display: block; }

    2. For transparent background in your content area, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #content, #main {
        background-color: transparent;
    }
    #58587
    Laura Pio
    Member

    It did the trick, Sakin. Thanks a lot! 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Change background and remove toggle from the other pages’ is closed to new replies.