Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1413347

    Hi

    In my home full width image/caption banner I want the Title caption to be in a heavy font that is a different weight to the standard H1 and H2

    Is there any CSS for this?

    The alternative is that I create this with a colour element, insert image as background, then put the caption as a text element or special heading. Could I set the Caption as a specific style in enfold > advanced styles?

    Thanks

    #1413428

    Hey woogie07,
    You can set the font weight, typically the H1 font-weight is 600, so you could set it higher with css link this:

    #top #main .avia-caption-title {
    	font-weight: 900;
    }

    But this also depends on your font, not all fonts have the same available font weights.
    Another option is to add text shadow to the title to make it look thicker and stand our more:

    #top #main .avia-caption-title {
    	text-shadow: 
        2px 2px 1px #000;
    }

    Best regards,
    Mike

    #1413509

    Thanks

    Is there any CSS to put the Caption text above the caption title on the full width easy slider?
    The default is for it to run below.

    Thanks

    #1413530

    Hi,

    Please try this CSS as well:

    .avia-fullwidth-slider .slideshow_caption .avia-caption-content {
      margin-top: -70px;
    }

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.