Suppose i want a border-bottom to look like this: This is not possible within default borders, as border-radius controls the radius around the element, not a single border edge. In-order to achieve this, a pseudo element can be used. div { max-width:50vw; padding-bottom:25px; position:relative; } div:after { content:”; position:absolute; bottom:0; left:0; right:0; background:red; height:20px; border-radius:0… Continue reading Curved end of border-bottom in CSS
Month: March 2024
Issue when creating Item Fulfillments for multiple lot items
In the existing, we need to update the code to create multiple item Fulfillments for multiple location. The script is not work if we add the same lot numbered item two times with same location. Also, not works for with different location as well.
Preserving Styling from WordPress WYSIWYG Editor in Next.js
When working with Next.js and fetching content from a WordPress backend, preserving styling applied in the WordPress editor can be crucial for maintaining the visual integrity of your content. One common scenario is when using a WYSIWYG (What You See Is What You Get) editor in WordPress to format text with styling such as bold,… Continue reading Preserving Styling from WordPress WYSIWYG Editor in Next.js
File Access Restriction by Subsidiary in File Cabinet
User would like to restrict a specific Subsidiary users from accessing a certain File Cabinet folder. Solution Navigate to Lists > Relationships > Groups > New Click Dynamic option and as a kind of members select Employee Click Continue Provide Name of the group, for example: Employees not from Parent Subsidiary Next to Saved Search field click the New button Now select Employee again In the Saved Search… Continue reading File Access Restriction by Subsidiary in File Cabinet
Package.AI
Package.AI uses artificial intelligence to optimize last-mile delivery operations and experiences. The company enables delivery operations to provide a high level of delivery service while controlling costs by automating consumer communications and optimizing driver productivity. The company’s chatbot, Jenny, uses SMS to autonomously negotiate deliveries with consumers using natural language and further help consumers throughout… Continue reading Package.AI
Role able to access Restricted Files via ‘Attach File’ column or via File URL
1. Navigate to Setup > Company > Preferences > General Preferences – Hide Attachment Folders = True 2. Navigate to Lists > Search > Saved Searches > New – Select Employee – Enter the Search Title (E.g. “Administrator Files”) – Available as List View = True – Criteria tab > Standard subtab > select Role… Continue reading Role able to access Restricted Files via ‘Attach File’ column or via File URL
LOTEC-110- Project Costing Tool
LOTEC-110-Project Costing Tool.xlsx (sharepoint.com)
Exploring Unity’s Terrain Tools
In the vast landscape of game development, creating immersive environments that captivate players and bring virtual worlds to life is an essential aspect of the craft. One of the most powerful tools in a developer’s arsenal for achieving this feat is Unity’s terrain tools. These tools empower developers to sculpt, paint, and design breathtaking landscapes… Continue reading Exploring Unity’s Terrain Tools
Release preview Testing Document for standard flow
Studco Building Testing Document: SBSUN_Release Preview Testing Document-Standard flow.docx.pdf
How to create CSS grid with columns of unequal height and width
Line based placement method can be used to create CSS grid with columns of unequal height and width. .grid-container { display: grid; grid-template-columns: auto auto auto; grid-template-rows: repeat(10, 1fr); grid-gap: 5px; padding: 5px; height: 100vh; background-color: #2196F3; } /* line-based placement */ .item1 { grid-column: 1 / 2; grid-row: 1 / 4; } .item2 {… Continue reading How to create CSS grid with columns of unequal height and width