• Resolved patriciaburnette2018

    (@patriciaburnette2018)


    Ok, I installed the Chat with no issues at all. Love it!!
    But, what is the code I can add in the .css file to enlarge the text in the chat window the texts are way to small ???
    Also, why can’t we be able to add like a image or something showing what chat room they are in, or just to decorate it a little bit???
    Thanks
    Patricia

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    all standard CSS should apply to the chat rooms without much issue. For font sizing, you’d want the font-size property.

    I think we have featured image support already that could be used for something like that, but I can’t recall. Ultimately these are just javascript-powered textareas that live inside custom post type posts, assuming you know a little bit of lingo and WordPress terminology.

    Thread Starter patriciaburnette2018

    (@patriciaburnette2018)

    Hi

    Thanks for replying back to me but this is what the .css looks like in code:
    .chat-container {
    height: 260px;
    overflow: scroll;
    overflow-x: hidden;
    margin-bottom: 20px;
    border-bottom: 1px solid #CCC;
    }
    So, if I put : font-size: 14pt that would work??? Because I tried to adjust the coding yesterday and it made all what was in the chat window disappear??

    There is only one chat file created in wp and that’s the main chat file, but it doesn’t create separate pages for each chat room? I have looked thru all the coding and nowhere do I see where I can add a graphic for each one??

    I even checked the .js file and nothing I can put in there and don’t see anywhere to add image??? And mine doesn’t have the public option on the end of the chat rooms rows after creating the chat??

    Also, when I try the CHAT in another browser it tells me I need to login, but there is NO LOGIN page to register or login at????
    Patricia

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Admittedly we’re not doing any sort of active development on the plugin, but still best to use something like the Customizer additional CSS panel for custom css.

    Regarding it disappearing at all, there may have been a syntax error that caused the rest to not work.

    Something like this should work, via Customizer:

    .chat-container {
        font-size: 14px;
    }
    

    We don’t create files for the chat rooms themselves, those are all posts and database driven. Looking at the post type registration, it does appear that we didn’t include featured images, so that would need to be amended. Due to our inactivity with active development, I’d say have at it if you want, or have someone who knows coding more, available to help.

    The chat logs are the only files we *create* by way of using the plugin, to store the chatter, and those are in the wp-content folder.

    Thread Starter patriciaburnette2018

    (@patriciaburnette2018)

    Hi
    Thanks again for replying so fast ?? , Ok I adjusted the font size but no change… I know some about php and css but I know more about HTML / cgi, etc. but let’s just say I want to add the code for images, and to allow them to be placed on each page can you give me an idea of how that code should be implemented??

    I looked at the code for the php, and there is registration in there for some reason lol, but it’s not for each user… ??

    I love the plugin don’t get me wrong and what drove me to it, was how easy it was to manage then I started to see a few issues, when I was getting ready to send to my friends on FB.
    Patricia

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Do you have a link that’s actually showing the the chatroom/post type post? This one isn’t showing me a chat area https://heavens-beauty.com/?chat-room=private-chat-friends. It’s showing me a page with an ID of 2048

    You’re probably going to need to modify the plugin if you want to get featured image support set up for the “chat-room” post type we register, or at minimum at least edit the appropriate template files for your active theme to add some sort of image output.

    Do note that these types of customizations fall outside the scope of what the plugin does, as it’s more making the plugin fit nicely with a given theme, and relying on that theme’s template files. We don’t have any options for that because every theme is so different.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How Can We Change the Text Size’ is closed to new replies.