I`ve decided to continue tinkering with Program O although it is quite outdated. Meight there are better tips to procede ?
I asking myself should I continue with Programma-O ?
I also briefly looked at AI programs on the internet. In addition, I still work with Php 5.40 ?
But first prepare the basic format before I continue.
I try to get the scroll-bar in <div> at the bottom, also after eatch new input, strange not one search on google gave an good example, I tried more things.
Code: Select all
<div class="centerthis">
<div id="chatlog" ><p> <br>
<span class="botTitle">chatbot: Welcome to Molendijk information <br></span>Your conversation id: <?php echo $convo_id; ?>
In CSS code from those div I see this
Code: Select all
.centerthis {
width: 90%;
}
.botTitle {
color: rgb(610, 176, 23);
font-weight: bold;
}
#chatlog {
box-sizing: border-box;
height: 100px;
overflow: auto;
min-height: 300px;
max-height: 500px;
position: relative;
min-width: 700px;
max-width: 90%;
margin: 10px auto;
background-color: transparent;
overflow: auto;
border: 3px inset #C66;
border-radius: 9px;
padding: 12px;
}
if i put the code below in div then i get a different result where scrollbar stays below and puts everything above that. So that I still have to move the scroll bar up every time with a new message.
Code: Select all
overflow: auto;
display: flex;
flex-direction: column-reverse;