• Resolved marcodurigon14

    (@marcodurigon14)


    Hello I ask you for two help for my site. I would like to change the font size of the posts (not the title) and I would like to insert an arrow (or a dot) before the titles. I don’t understand which code I need to use. P.S. Your plugin works very well.
    Thanks
    Marco

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Aldo Latino

    (@aldolat)

    Hello,
    for the first question, use this CSS:

    li.pis-li p {
    	font-size: 0.7em;
    }

    Change 0.7em according to your needs.

    For the second question, use this CSS:

    .pis-title::before {
    	content: "\2192\0020";
    }

    Code \2192 is the right arrow, while \0020 is a space.

    Bye.

    Thread Starter marcodurigon14

    (@marcodurigon14)

    Hello, first question ok, second question…doesn’t work
    If I use code
    .pis-title::before {
    content: "\2192\0020";
    }
    OR CODE
    #pis_posts_in_sidebar-2 .pis-title::before {
    content: "\2192\0020";
    }
    the right arrow doesn’t appear
    Thanks

    Plugin Author Aldo Latino

    (@aldolat)

    Using the inspector of the browser, I tried to add the code in the header of the page and this is the result:

    As you can see, the arrows are correctly generated.

    Try adding something different, for example “abc” only to see if the string is added.

    Thread Starter marcodurigon14

    (@marcodurigon14)

    perfect! The right code is that of the second answer. In the first the code was different and didn’t work. Thank you so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘font and arrow’ is closed to new replies.