• We are STAs
    • Daniela Caballero
    • Leilani Cabello
    • Lorena Chiles
    • Marissa Devivar
    • Luisa Matzner
    • De’sha Bass-McClellan
    • Adrian McKee
    • Thang Truong
    • Carrie Wang
  • We were STAs
  • STA Presentation
    • STA Presentation 2017
    • STA Presentation 2016
  • Testimonials
  • Resources
  • Home

STA Blog

Week 18 – Thang

March 7, 2023 By Thang Truong

Week 18

Project: Master of Arts in Economics

Started on: Feb 28, 2022

Completed on: Mar 3, 2022

Staff Guidance: Stacy

Description: For this project, I will need to do the following:

  1. Fixing the news and events section
  2. Adding Accordion FAQ
  3. Adding Documentations on how to help the client navigate through different pages.

Number 1: Fixing the news and events section

Before, the news and events section query and get data from all of the posts. Since the website eliminates all of the posts due to the confusion between posts and pages, the news and events section now is just a column of pre-determined pages.

Number 2: Adding Accordion FAQ

After the meeting with the client, the accordion FAQ is proposed to be implemented by the client. I went ahead and added a Spectra plugin that can help with displaying the accordion. The accordion looks something like this.

 

Number 3: Adding Documentation on how to help the client navigate.

There are a lot of different things that I need to add for the documentation including how to navigate the home page, how to edit the footer, header and how to navigate other pages. Moreover, I also need to show how to edit and add items in the navigation menu.

 

Project: Conference Website

Started on: Mar 2, 2022

Completed on: Mar 3, 2022

Staff Guidance: Stacy

Description: For this project, I added Schedule Plugin to shift between different days of the agenda.

Conference Website: 

Demo

 

Qualtrics Survey during the meeting:

Follow this link to the Survey:
Take the Survey

Or copy and paste the URL below into your internet browser:
https://utexas.qualtrics.com/jfe/form/SV_6lEn6uMwTdauaGi?Q_DL=fTqD9J2Vbqe9qSd_6lEn6uMwTdauaGi_CGC_RBJUHqpG2ohYQ3V&Q_CHL=email

 

Filed Under: Uncategorized

Summer A-frames (the final blog update)

March 6, 2023 By Luisa Matzner

Summer Marketing

Final A-frames

Project: Summer Marketing A-frames
Client /Prof: Internal
Completion Status: Started Feb
Staff Guidance: Maddy
Description: Final export for A-frame graphics.
To be completed: Mar. 1

The A-frames are done! The last-minute edits mainly consisted of adding the $500 course sticker and checking all the QR codes to make sure they were going to the proper link.

Summer23-SpringAframe-english

Summer23-SpringAframe-general

Summer23-SpringAframe-gov

Summer23-SpringAframe-his

Summer23-SpringAframe-minors

Summer23-SpringAframe-psy

Summer23-SpringAframe-soc

 

Filed Under: Fall 2022 - Spring 2023, Uncategorized

FSC Before and After Photos

March 3, 2023 By Lorena Chiles

Faculty Search Committee PPT Redesign

Client /Prof: Professor Hunt
Completion Status: Started on Jan 30
Staff Guidance: Maddy
STA Team Members: Adrian, Carrie, Marissa
Complete by: ASAP

Now we’re basically done with the FSC project, super exciting! Here are some of the before and after photos of the slides, in total the new powerpoint has 55 slides that our team redesigned.

Filed Under: Fall 2022 - Spring 2023, Uncategorized

Week 18

March 1, 2023 By Lorena Chiles

Faculty Search Committee PPT Redesign

Client /Prof: Professor Hunt
Completion Status: Started on Jan 30
Staff Guidance: Maddy
STA Team Members: Adrian, Carrie, Marissa
Complete by: ASAP

Nearly done with redesigning a PowerPoint presentation meant for showing to faculty on hiring a diverse workforce! My next post will be a side by side comparison of some of the slides, stay tuned! Here are some of the new graphs I worked on this week:

Summer Online Course Marketing Photos

Client /Prof: LAITS
Staff Guidance: Maddy
STA Team Members: Carrie and a few other STAs
Completed on: Feb 23

Last week I launched my modeling career and was in some photos for the summer online course marketing! You can see me here in the blur of the background. 😀

STA Presentation Poster Cut Outs

Client /Prof: LAITS
Completion Status: Started on Feb 24 (for me at least)
Staff Guidance: Maddy
STA Team Members: Carrie, Adrian, Leilani, Luisa, Marissa
Complete by: Mar 1

This week I also worked on cutting out some of the STA photos from the blue background! Here is one of the cut outs I worked on:

Filed Under: Fall 2022 - Spring 2023, Uncategorized

Week 18: Thang

February 24, 2023 By Thang Truong

Week 17

Project: TGDP

Started on: Feb 21, 2022

Completed on: Feb 24, 2022

Staff Guidance: Stacy

Description: For this project, I continue to work on the display of the testimonial section. The idea is that the design should not break even if the testimonial  text is longer than what was displayed. After contemplating the problem and asking Stacy for some suggestions, I tested out different options and eventually landed on this approach.

  1. Change the content testimonial to display relative instead of absolute. Because of that, change the margin-top: -150px instead of top: 60%.
  2. Change the margin-bottom to be less than before since the position relative already takes into account of the height of the div.
  3.   The other problem I had is that I want to make the height of the content testimonial equally to match with the highest testimonial text. There are two options that I explored including displaying with grid and using JavaScript. For displaying grid, I have trouble of changing the placement of the cards in the mobile size, and it will break a lot of existing WordPress codes. Therefore, I try to investigate the problem and simplify it to see what approach should I do. Eventually, what I really need is just the height of the longest testimonial text and then I can set the height of all of the cards to match with the longest one. After that, I proceed to use jQuery to loop through each card, get the height and set the height of every three cards to match with longest card out of 3 of them. I used an array to store three cards and get the max height out of three. Then, I pop all three and set the height. I would do this iterations until I find no cards left.

The code:

$(function() {
function unifyHeights() {
var maxHeight = 0;
var arrayContentTestimonial = [];

$(‘.content-testimonial’).each( (index, element) => {

arrayContentTestimonial.push(element);

var height = $(element).height();

console.log(height);

if ( height > maxHeight ) {
maxHeight = height;
}
// if there are three testimonial then pop out each and set the height to match the max

if (arrayContentTestimonial.length === 3){
// check if the list is not empty
while (arrayContentTestimonial.length){
el = arrayContentTestimonial.pop()
$(el).height(maxHeight);
}
// reset max-height for the next iterations
maxHeight = 0;
}
});

}
unifyHeights();
});

 

TGDP Testimonials #2

 

 

Project: MA in Eco

Started on: Feb 24, 2022

Completed on: Feb 24, 2022

Staff Guidance: Maddy

Description: For this project, I added or changed some more contents based on the feedback from the clients.

  • Add tagline Learn more about the process
  • Change 10 months 10 course -> View our curriculum
  • Add another information for international applicants
  • Need to add some more contents to the news and events

https://www.figma.com/file/gg8inqItjNLN7MHnkUENgx/Master-of-Arts-in-Eco?node-id=23%3A35&t=Hzczrd8qHOvL0nAt-1

Project: Conference Website

Started on: Feb 24, 2022

Completed on: Feb 24, 2022

Staff Guidance: Maddy, Stacy

Description: For this project, I need to make a sample conference website. I translated the design into WordPress.

Demo

 

Filed Under: Uncategorized

Week 17

February 22, 2023 By Lorena Chiles

Faculty Search Committee PPT Redesign

Client /Prof: Professor Hunt
Completion Status: Started on Jan 30
Staff Guidance: Maddy
STA Team Members: Adrian, Carrie, Marissa
Complete by: ASAP

Continuing to redesigning a PowerPoint presentation meant for showing to faculty on hiring a diverse workforce! Here are some of the slides that I worked on since I last posted, a few things were updated by Maddy when I was out on Monday:

Filed Under: Fall 2022 - Spring 2023, Uncategorized

  • « Previous Page
  • 1
  • 2
  • 3
  • 4
  • …
  • 76
  • Next Page »

link to LAITS home page

Video STA Home

© 2023 Liberal Arts Instructional Technology Services | Production Credits