SSH into your raspberry pi or open the Terminal directly in your raspberry pi. Go to the Desktop: cd /home/pi/Desktop/…
Open a new terminal window. Open the Terminal Preferences. Go to the Profiles tab and select the Homebrew profile, then…
I wanted to change the resolution of the generated thumbnails images located in my posts section page of my personal…
Open a terminal shell and run: nano main.sh Copy the following code and save the script: #!/bin/bash echo “Going to…
Increase the image storage size for the “Single Page – Page Header Row” from 256kb to 512kb. Admin URL: /admin/structure/media/manage/single_page_page_header/fields/media.single_page_page_header.field_media_image_8…
After login as an administrator to the required site, go to the following URL address: cms.staging.uccs.edu/nameofthesite/admin/structure/paragraphs_type/single_page_custom/fields uccs.edu/nameofthesite/admin/structure/paragraphs_type/single_page_custom/fields Then make sure…
Use the following code to make the Mini-Bio-Card rows responsive: <style> /* When the screen is less than 650 pixels…
Example of how to read values from an external XML using PHP json_encode and JavaScript. Read in the values from…
Example: CodePen Code: <div class=”myClass”></div> <script> document.addEventListener(‘DOMContentLoaded’, function() { document.getElementsByClassName(“myClass”)[0].innerHTML = “<img alt=’my image’ src=’http://astralmemories.com/img/astral-memories-logo.png’>”; }, false); </script>
This code search for all the elements of a certain class and replaces its classes for a new one. Code:…