• I hesitate to ask this question here, since it’s more related to the custom css I added, then to the theme.

    I wanted a more ‘fancy’ blockquote style on my blog, so I added this css (among others) to my site with the simple custom css plugin: (only the css for the quotes, not for the rest of the blockquote style, willing to provide that, however.)

    blockquote p:before{
    	content: '\201C';
    	font-family: serif;
    	font-style: normal;
    	font-weight: 300;
    	position: absolute;
    	font-size: 175px;
    	top: 0px;
    	left: -105px;
    	color: rgba(188, 147, 200, 1);
    	text-shadow: 7px 14px 10px rgba(0, 0, 0, 0.1);
    }

    And with articles, this works great, see https://annetanne.be/kruidenklets/2008/08/22/geen-netels-nodig/

    But for pages, there’s a problem…
    Whenever I use a blockquote on a page, the opening quotes are at the very beginning of the page, not a the start of the blockquote, see https://annetanne.be/kruidenklets/uit-de-kruidenmand/kruiden-a-j/arnica-montana-wolverlei/
    And I can’t find out what I’m doing wrong…

    It seems that the colored quotes are positioned relative to the very first <p> of the page, instead of the first <p> of the blockquote.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Normally this would not be theme related support, but for this one I don’t mind helping out. Single posts are different from pages so where you have this in your CSS:

    .single blockquote p

    You need to also add one for the .page class:

    .single blockquote p,
    .page blockquote p

    If you want that border gone as well, you need add this to that:

    .single blockquote p,
    .page blockquote p {
    border: 0;
    }
    Thread Starter AnneTanne

    (@annetanne)

    Thank you so much…
    What is the best way to support the development of this theme? Buying the Pro-version, or is there some donation-based thing?

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Although you have the option to get the pro version, that is totally up to you, and no donation is necessary. However, just knowing you are happy with Senses Lite and support given is more than enough…you are also free to submit a review and rating if you wish ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Strange behaviour on some pages’ is closed to new replies.