Hi,
Since it is a custom codes problem, I need to test and debug it in your live website, but seems you are editing that view "Search Location", so it is hard to edit the codes.
Here are what I found:
Q1) Need to align the buttons to the bottom of a Row.
I have edit the content template "Loop item in Search Location", as below:
<div style="min-height:140px">
<strong>[types field='store-name'][/types]</strong>
<br>
[types field="address"][/types]
<br>
[types field="contact"][/types]
</div>
<button type="button" class="my-button"><a href=[types field='get-direction' output='raw'][/types]><strong style="color:white;">GET DIRECTION</strong></a></button>
Same as your previous post, we just need to wrap contents except the button into a DIV tag, and setup min-height value to that DIV tag
Q2) Change the button and text color for the button.
As you cans see in above content template, you can add a CSS class name "my-button" to that button HTML tag, then you can style it with CSS codes, like this:
button.my-button{
background-color: blue;
color: white;
}
See results here:
hidden link
Q3) The table is not responsive,
Yes, it is expected result, the HTML table does not work as responsive like your screenshot, the only built-in option within Views plugin is based on Bootstrap, but you have disabled it here:
Dashboard-> Toolset-> Settings
in section "Bootstrap loading", you are using option "This site is not using Bootstrap CSS".
https://toolset.com/documentation/user-guides/displaying-content-using-grids/
If I am right, your website theme "HND" is not compatible with Bootstrap, and conducts the problem in handphone:
https://toolset.com/forums/topic/dropdown-list-not-function-in-responsive-view-handphone-view/
So there are few options you can choose:
1) contact the author of theme "HND", fix the compatibility problem with bootstrap
2) Switch to other bootstrap compatible theme, there is a theme list we recommended:
https://toolset.com/documentation/recommended-themes/
3) I see you are using "Elementor" editor, you might check this with their support, check if there is any way to setup a responsive table.
hidden link
You can output view result according to their requirement, butI have searched it with google, but can not find related document on their site.