• Hello everybody , i hope that you can understand my english, i ′ve changed the background color in my theme and also put the featured pages on it, but they have a white background behind the circle, how can i change it? i′ve looked also at class-content-featured_pages.php put there is nothing with white color.

    please help me

Viewing 3 replies - 1 through 3 (of 3 total)
  • Put this in custom css and change the color (#fff) to match your background color

    .round-div {
    border: 104px solid #fff;
    }

    @tomaja: please test your snippets before posting them here.

    This theme uses the border-width property on .round-div to create the dynamic effect on images mouse hover. Besides, border-width is different on different screen widths, as the thumbs also change size dinamically, depending on media queries.

    So, the correct answer to the question is:
    Add this to custom CSS panel in Customizr options:

    .round-div {
    border-color: #fff;
    }

    where #fff should be replaced with any valid html color code (#rrggbb, rgba(), rgb(), hsl()).
    That is if cinam01 has a monochrome background. If she (or he) has a background picture, things get a lot more complicated and the plain answer is:
    “It can’t be done cross-browser/cross-device.”

    Thread Starter ginam01

    (@ginam01)

    Thank you very much ! it works !!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘* Featured pages actions’ is closed to new replies.