Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #88104
    catwingz
    Participant

    Hi, the image captions are getting squished over to the right side and are preceded by a hyphen, sort of like a list bullet. I an fix the padding issue by adding

    .wp-caption .wp-caption-text {
    	padding-left:  8px;
    }

    to the custom CSS, but the hyphen remains, with the caption riding on top of it. This makes the first part of the caption difficult to read. How can I get rid of the hyphen?

    Also, how can I change the background for the widget area of the footer?

    thanks

    #88139
    Mahesh
    Keymaster

    @catwingz: Please post in your site url so that I can help you.

    Regards,
    Mahesh

    #88185
    catwingz
    Participant

    Sorry, it’s

    #88186
    catwingz
    Participant
    #88187
    catwingz
    Participant

    !!! Integration Massage
    Hopefully this time it will work!

    #88218
    Mahesh
    Keymaster

    @catwingz: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    /* Remove preceding hyphens from caption */
    .wp-caption .wp-caption-text::before {
        content : "";
    }
    /* For widget area background */
    #supplementary .widget {
        background-color: #f1f1f1;
    }
    /* For widget area outer background (Please skip this if you don't need this) */ 
    #colophon {
        background-color: #f1f1f1;
    }

    Note: Please change the color as you required.

    Let me know if any problem.

    Regards,
    Mahesh

    #93498
    catwingz
    Participant

    Hi, I am back to this project, and we are half-way there. The hyphens are gone, but now the background color for the images has to go. I tried changing the code from the last post to #ffffff, but it has no effect. What am I missing?

    thank you

    #93511
    Mahesh
    Keymaster

    @catwingz: Add the following CSS for removing background color from image:

    #branding {
        background-color: none;
    }

    Regards,
    Mahesh

    #93516
    catwingz
    Participant

    Mahesh, thanks, but that doesn’t appear to change anything. This is the background for images with captions. I would like to either remove it or change it to white.

    #93554
    Mahesh
    Keymaster

    @catwingz: Can you please give me the url of the page, where you want this? I am a bit confused.

    Regards,
    Mahesh

    #93580
    catwingz
    Participant

    The second of the two images of the brain has a caption. This is what she wants to be all white. Thanks

    #93798
    catwingz
    Participant

    It turned out to be a very simple solution.

    .wp-caption {
    background: #ffffff;
    }
    #93831
    Mahesh
    Keymaster

    @catwingz: Sorry, I had replied to the thread but for some reasons, the reply is gone. I am glad that you fixed the issue yourself. Let me know if any problem.
    Have a nice day!

    Regards,
    Mahesh

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Image captions and footer background’ is closed to new replies.