3 Ways to Hide an Element (HTML / CSS) 24 April 2022 minute reading Hiding an element in web pages is sometimes necessary or we use this for an instant (or temporary) fix. Lets examine the most common types of element hiding in web pages. Our first two are going be CSS attributes: display: none and visibility: hidden Even though most of us already use these, let’s sum up […]
5 Steps to Redesign Your Website and/or App 23 April 2022 minute reading Something is not going well or the complaints have increased. Maybe you think it’s time to innovate and you’ve decided to change your current app or website? Very nice. So are you sure you’re ready? Do not jump into anything without reviewing the following 5 steps: 1. Evaluate Your Current Design Are there old images […]
Increase Your Page Loading Speed: Asynchronous and Lazy Loading 10 April 2022 minutes reading Even hough there are opposing views, the majority will agree that; ‘good user experience starts with fast service’. Web browsers (Chrome, Firefox, Opera…) load visual and text content simultaneously. This gives a nice view when opening the page. Such as: <h2>A Nice Header</h2> <img src=”a-large-image” alt=”Image info” /> <p>Texts that present the information the user […]
WordPress Pro Tip: Open The Single Search Result Automatically 8 April 2022 minute reading From the perspective of User Experience Design (or UXD in short) we have to put ourselves in the user’s shoes. While doing that, as a designer, I clear my mind from the experience and thoughts I had while creating the product to be have first hand users mind set. When I did so, I found […]
Turn Your Browser Into Notepad 7 April 2022 minute reading No more worrying about searching for a post-it, paper, opening a program or application from your computer in an emergency. data:text/html, <html contenteditable> Paste the above code into your browser’s address line, press ENTER, then drag and drop it to your shortcut bar. Click this shortcut as needed. You can now use the newly opened […]
CSS Truncate – Single Line / Multiple Lines 30 March 2022 minute reading While there are ways to truncate a long text with coding, we can also use CSS to Truncate texts. For cutting the text, which is longer than the width of the area we want it to use, I suggest you to apply the CSS Truncate methods. For your needs, you may choose from a one […]
WordPress Tip: Limiting the Search to a Single Category 25 March 2022 minutes reading If you are using more than one Category in your posts of your WordPress-based project, and you want your search feature to work for only one of them, this method is for you. First of all, it is useful to remind you: For simple operations you can do without using a plugin, please do not […]
Design Week Turkey 2017 13 November 2017 minute reading On the preveous week, I was at the Design Week Turkey in Istanbul. As I was invited by the organization and representative of Interior Affairs, I had to attend as many conferences as possible while keeping an eye on the workshops and the fair. the subject of this year was “The Potential of Design” and […]
Phone number usage on mobile web pages 31 October 2017 minute reading I love usability, don’t you? Even the smallest touch to the user experience will worth more than the effort to users. On the web pages, when I have to use phone numbers, I always add the dial code to my HTML. With that, you can allow your visitors to one-click on the phone numbers to […]
The DOM (Family) Tree 30 October 2017 minute reading The DOM subject is generally taken lightly to new coders or designers. I stumble upon a very nice explanation today and wanted to share here.
Separation of Concerns 24 October 2017 minute reading In coding, Separation of Concerns refers to the delineation and correlation of software elements to achieve order within a system. Separation of concerns is a design principle stating that code should be separated based on its purpose in a program. In web development, that generally means the structure of a page is defined in an […]