FJ Stack – Are there other row class?

  • danick

    #10282

    Hi,

    Under the FJ stack row property, there is a field row class. I see that the elegant sample has “highlights” in as the value.

    Is there other preset values to chose from?

    Danick

    Admin

    Syahir Hakim

    #45817

    Nope, that’s pretty much it at the moment. We might add more as and when required.

    danick

    #45818

    okok is there a place where I can change the paragraph spacing, I think now it is 2x spacing which is a bit wide and not so nice.

    Admin

    Syahir Hakim

    #45819

    You can use CSS for that. Any specific example on your site?

    danick

    #45820

    Yes http://www.2keeptraveling.com/1-must-know-term-for-long-term-traveling-food-and-accom-exchange/

    the paragraphing is too wide, im using the “highlight” row class

    is it possible to change the font and size of the text too.

    is it also possible to change the default font and size of elements in the side bar.

    Thank you very much ๐Ÿ™‚

    Admin

    Syahir Hakim

    #45821

    Those extra spacing between the paragraphs is because you have additional empty lines in your post. Remove those empty lines between the paragraphs and the extra spacing should disappear.

    To modify the font size, use this CSS code:

    .highlights .textwidget {
    font-size: 18px;
    line-height: 26px;
    }

    danick

    #45822

    hmm but putting an empty line between the paragraph is the common logic, that is how we write letters or documents in words.

    so im just copying what i write from words document into the web.

    how do i use the css to change font type to Verdana?

    Admin

    Syahir Hakim

    #45823
    Quote:
    hmm but putting an empty line between the paragraph is the common logic, that is how we write letters or documents in words.

    so im just copying what i write from words document into the web.

    WordPress already converts newlines in your content into paragraphs, so there’s no need to enter additional empty lines. If copy-pasting content from Word, use the “copy from Word” button in the WordPress editor.

    Quote:
    how do i use the css to change font type to Verdana?

    .highlights .textwidget {
    font-size: 18px;
    font-family: verdana;
    line-height: 26px;
    }

    http://www.w3schools.com/css/

    danick

    #45824

    okok thank you ๐Ÿ™‚

    danick

    #45825

    I found that the size of the text changes, but there are some header text that remains unchanged like “recent post”, “related post, “read a reply” and my name in the author bio etc, I cant find it in w3schoo so i tried to add “header-font-size: 25px;” but its wrong.

    .highlights .textwidget {

    font-size: 18px;

    font-family: verdana;

    line-height: 26px;

    header-font-size: 25px;

    }

    I wanted to hide the excerpt of previous and next posts but i do not know what is the name of this widget.

    .previousnextposts .excerpt {

    display: none;

    }

    Could you help me on these too thank you very much ๐Ÿ™‚

Viewing 10 posts - 1 through 10 (of 10 total)

  • You must be logged in to reply to this topic.