• Resolved mustfly79

    (@mustfly79)


    Hello, and thanks for a great theme. Im having some issues with not getting a frame or border around txt in pages. How do i do this?
    I just changed the theme and it seems like my shortcode plugin does not function properly with the customizr theme?

    Thanks in advance

Viewing 8 replies - 1 through 8 (of 8 total)
  • Link to site, and describe an example page/image

    Thread Starter mustfly79

    (@mustfly79)

    http://www.godopplevelse.no/produkt/luftakrobatikk/

    How to add an border, padding etc around the short description, text area in product description?

    Thanks for replying rdell😊

    Sorry, the language is confusing me! Can you describe the text you mean please? (eg first few words)

    (Just booked a cruise through the Norwegian Fjords in the Summer!)

    Thread Starter mustfly79

    (@mustfly79)

    Heheh, the text Who starts with “bli med på en luftetur…

    Recomend Geiranger, Lofoten or lysefjorden for your cruise rdell👍

    Interesting. This has introduced something new to me (itemprop) which I need to research in the morning.

    Short solution is:

    .summary.entry-summary p {
        border: 2px solid red;
    }

    but it highlights more than you want.

    OK, well I’ve learnt something today!

    Can you give this a try:

    div[itemtype="http://schema.org/Offer"] > p[itemprop="description"]
    {
        border: 2px solid red; /* Adjust */
    }

    Which should limit the border to the item you wanted.

    If that doesn’t work, try:

    div[itemtype="http://schema.org/Offer"] > div[itemprop="description"] > p
    {
        border: 2px solid red; /* Adjust */
    }

    Let me know which one works! (If any)

    Thread Starter mustfly79

    (@mustfly79)

    This worked out fine, but went for another option

    Thanks
    Rdell

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘text with border around’ is closed to new replies.