What is Lorem Ipsum?

Lorem ipsum is simply Latin text. Gobbledygook, essentially. Well, not really; It does have its roots in latin text from just before the BC to BCE line, so that puts it around 2000 years old. Past that, it’s gibberish. 

Web Design Gainesville Florida
Web Design Gainesville Florida

Sometimes web developers need filler text to create web pages. Instead of just typing the word “text” over and over, random latin words tend to make things more attractive. The reason is that it mimics written english quite nicely. The word spacing is similar so the reader can conceptualize english in that space. The second reason it is a useful tool for web developers is that users/clients will see not pay attention to what the text is saying since they cannot understand it – this is beneficial when you’re trying to have a client focus on the layout only, not necessarily what is being said on a website. Here’s a quick sample of lorem ipsum:

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer pulvinar augue magna, vel rutrum est lacinia eget. Morbi ultrices vestibulum eleifend. Pellentesque id faucibus magna. Nullam aliquet sollicitudin lacus at consequat. Integer tristique sem et nisl tempus congue.

More Web Design Blog Content

Leverage Browser Caching

When a webpage loads on your screen there are a lot of little pieces that have come together to create what you’re seeing. Your logo, other images, style sheets, javascript files are among some of the external resources a webpage might use to render itself on your screen.

WP: Adding a HTML5 Search Form

A simple script from your local Gainesville Web Designer. [code scroll=”false” language=”htmml”] <form role=”search” method=”get” class=”search-form” action=”<?php echo home_url( ‘/’ ); ?>”> <label> <span class=”screen-reader-text”><?php echo _x( ‘Search for:’, ‘label’ ) ?></span> <input type=”search” class=”search-field” placeholder=”<?php echo esc_attr_x( ‘Search …’, ‘placeholder’ ) ?>” value=”<?php echo get_search_query() ?>” name=”s” title=”<?php echo esc_attr_x( ‘Search

Even More Internet Marketing Success

We’ve been working with attorneys all over town. None more than Fisher, Butts, Sechrest and Warner. They’re great folks located over in Haile. They have a successful law firm and are enjoying much success online. When we met, they were basically nowhere online … maybe somewhere back on

Adding a Fee in Woocommerce

This piggybacks off of a solution I found elsewhere. We modified it to add a single fee for products based on the taxonomy. It comes in handy to categories products and then apply this rule to that category. function action_woocommerce_checkout_calculate_fees( $cart ) { // Initialize $quantity = 0;

Javascript called by PHP

Interesting little snippet. What is going on here? Livewire gives you the low down.    if($num_rowvs == 0){ echo ‘<script>// <![CDATA[ alert(“This is an alert message. I’m alerting you that you are totally awesome!”); // ]]></script>’; }   First, we’re creating a simple if statement in PHP.  Not entirely