Support » Theme: Moesia » Background image for blockquote section

  • Resolved dmbgleas

    (@dmbgleas)


    Hi, I’m wondering how I might add a background image into the blockquote widget or any other Moesia widget that doesn’t have the option. I would also like to change the size of the image in the blockquote section. Can I edit either of these things in a CSS editor, or do I need to create a child theme? Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    To add backgorund images for widgets that don’t offer this option you would need to do it manually in a custom CSS plugin, like this:

    .blockquote-area {
        background-image: url('yourimage.png');
    }

    Have a look here for more info on background images.

    Thread Starter dmbgleas

    (@dmbgleas)

    Thank you! Can I change the size of the featured image in the blockquote section using custom CSS?

    What exactly would you like to change to it? At the moment it takes 50% of the row, provided that your image is big enough to fill that 50%.

    Thread Starter dmbgleas

    (@dmbgleas)

    I’d like to experiment with some different settings, but I would start with 35% rather than 50%

    You can do it by adding this in a custom CSS plugin:

    .bq-img {
       width: 35%;
    }
    .bq-text {
       width: 65%;
    }

    You just need to make sure that they add up to 100%.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Background image for blockquote section’ is closed to new replies.