Splendio theme css help

  • Unknown's avatar

    Hello, I have custom upgrade and using Splendio theme. I want to:
    1. change wording “# thoughts on” , the line above comments made
    2. add the word “says” after gravatar name
    3. how to keep comments from collapsing, I want them to show
    4. change wording in comment box (enter your comment here…)
    Thanks to whomever can help me figure this out!
    http://jeanniethedog.wordpress.com

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    3. how to keep comments from collapsing, I want them to show

    Re: collapsed comments on front page
    The way your theme and blog are functioning is the norm. Unless you use the P2 theme which is a Twitter-like theme, know that the front pages of our blogs “showcase content” and comments are collapsed on that page. You cannot change this. The way the comments function is coded into the core of WordPress. By clicking the post title or the comments link the posts on the front page open on their own page where all comments display.

  • Unknown's avatar

    4. change wording in comment box (enter your comment here…)

    re: comment prompt
    Dashboard > Settings >Discussion
    Scroll to the bottom and there is a Comment form prompt that you can edit. Do that and click “save changes”.

  • Unknown's avatar

    1.
    Add this:

    #comments-title {
    font-size: 0;
    }
    #comments-title:before {
    content: "YOUR ALTERNATIVE HERE ";
    font-size: 31px;
    }
    #comments-title span {
    font-size: 31px;
    }

    2. Add this:

    .comment-author .says {
    display: inline;
    }

    4. I don’t think you can change the placeholder text (but I could be wrong). If I’m right, would you settle for making it invisible?

  • Unknown's avatar

    4. I couldn’t find a way to change the text, but I could add to it:

    ::-webkit-input-placeholder:after {
    	content: " thanks so much!";
    }
    
    :-moz-placeholder:after {
    	content: " thanks so much!";
    }
    
    ::-moz-placeholder:after {
    	content: " thanks so much!";
    }
    
    :-ms-input-placeholder:after {
    	content: " thanks so much!";
    }

    or this could work to hide the placeholder text instead of adding to it:

    ::-webkit-input-placeholder {
    	visibility: hidden !important;
    }
    
    :-moz-placeholder {
    	visibility: hidden !important;
    }
    
    ::-moz-placeholder {
    	visibility: hidden !important;
    }
    
    :-ms-input-placeholder {
    	visibility: hidden !important;
    }
  • The topic ‘Splendio theme css help’ is closed to new replies.