• Resolved lockertalk

    (@lockertalk)


    Hi,

    I am trying to get my CSS does the same thins as this. Having a caption field right next to the image with some nice padding space.

    However, I cannot find how to accomplish, here. Now, the caption field sits under the image…

    Can anyone help?

Viewing 3 replies - 1 through 3 (of 3 total)
  • If you look at the Big Square site with Firebug (…or an equivalent app), you will see that there are two separate sections, “featured” and “detail”. The text on the side of the image is not the image’s caption. This is how Big Square created their own custom theme.

    you could try css to move the position of the caption text;

    example:

    .wp-caption{position:relative;}
    .wp-caption-text{position:absolute;right:-250px;top:0;}

    might need other parameters such as width, max-height, etc.

    Thread Starter lockertalk

    (@lockertalk)

    Hi,

    Thank you for the help.
    I got through.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Theme: BigSquare] Changing "Caption" CSS’ is closed to new replies.