Showing posts with label Website Design. Show all posts
Showing posts with label Website Design. Show all posts

Saturday, October 24, 2015

Overlooking the Favicon

Many people have never even heard of a favicon. In fact, if you type it ABC spell check will try to convince you that no such thing exists. Even for the few seconds that you see a favicon, it slips through your mind without a thought. The only time it becomes obvious is when one isn’t there. Favicons subconsciously distinguish a professional website from a haphazardly created website. I imagine at this point, those of you who don’t know what a favicon is, are either Googling it or skimming ahead to find out.
A favicon, short for “favorite icon” is the small icon (16×16 pixels) that appears in the tab of your web browser for a website. Ideally, each website has their own identifying favicon. I recently updated mine to go with my new color scheme. I typically keep it simple with my first initial “M”. Maybe one day I’ll get fancy and have an actual logo/icon for my favicon.
Go ahead and open up some new tabs with common websites you go to. Google, Yahoo, Facebook, Twitter, you get the idea. See how distinctive each tab is? Sure you can read the text, but you can also know by simply looking at the favicon. So here I am going to pick on a couple of websites… hate to do it, but you need some “non-examples” to get the idea of what happens when you don’t take the extra step to add a favicon. Check out ITWales.com, also take a look at BZA.com. I hope they spend more time and effort making your “Website Design” than they did on theirs should you decide to pay for their design services.
Now that you understand the importance of the favicon, how do you include it? WordPress has some fantastic instructions for adding a favicon to your wordpress hosted website. The process is similar for other websites. You simply create your 16×16 .ico image and then place it in the root directory as “favicon.ico”. If you don’t see it appearing in the tab, then you may have to add some code to the <head> section of your website.
<link rel="icon" type="image/ico" href="http://www.mysite.com/favicon.ico"/>
Most default image creation programs don’t save as .ico. I believe Gimp is one of the exceptions. However, if you don’t want to go to the trouble of figuring out how to install a plugin for this, check out these websites that will convert png and other files to ico.
I hope this helped all of the fledgling WordPress users and Website Designers out there. As always, feel free to send me a message if you run into any problems.

Customizing the Color Scheme of WordPress

There are several ways to customize a WordPress Theme just like there are several ways to slice a pizza. The two easiest ways to change the color scheme if you are hosting a WordPress site is to 1) Create a child theme 2) Use the Edit CSS feature available to those who activate Jetpack.

How Do I Create a Child Theme?

If you are interested in creating a WordPress Child Theme, the information at WordPress.com Codex will help. I created one previously based on the Twenty Twelve theme. After hours pouring over the Codex and multiple blog posts I can up with a fairly decent finished product. I even went so far as to create custom post types for my Portfolio section. The page you will want to focus on for changing the color scheme is the style.css file. You basically will be copying this file into your child theme and manipulating it as you wish. The child theme details will override the details of the parent theme.
Needless to say I found myself spending more time figuring out different details than I spent actually blogging. The Twenty Twelve theme was a little underwhelming for my taste so along with defining a color scheme I also created a personal header. However, the Twenty Thirteen theme is a dynamic base theme that displays across devices nicely and simply needs some color changes to personalize it. You can create a header if you desire, but keep in mind that it will not be as dynamic as the rest of the blog for displaying on mobile devices and smaller screens.
I say all of this not to scare you off from creating your own extensive child theme, but to provide some insight for those who are simply toying with the idea for their personal blog. If you have any questions about creating a child theme, feel free to comment here or send me a message on my Contact page.

What CSS Do I Edit?

Once you have decided if you will be creating a child theme, or simply using the Edit CSS feature, you will need to decide what color scheme you would like your blog to have. I have always been a fan of the color purple… ok maybe it is more of an obsession with the color purple… so my choice was easy. For those who are unsure what color they would like, a few websites might help. Color Scheme Designer 3 is a great way to quickly pick colors using the color wheel. Color Picker.com is fantastic on its own or with others. Not only can you pick your colors and have the hex code provided, but you can select several colors that you would like to use for your CSS.
So now that you can choose you colors and get a hex code, as well as have access to the CSS, you will need to define what colors to change in the CSS code. If you use the Google Chrome browser the Inspect Element feature will be a fantastic help in identifying which codes/colors will need changed. The most difficult and contrary thing to change was the arrow for pagination, which I was looking for in the footer but ended up finding it as .paging-navigation. The code is below. If you would like my full CSS, just send me a message and I will happily share. Good luck to you as you begin customizing your WordPress Twenty Thirteen theme!
.paging-navigation {
background-color: #79718F;
padding: 40px 0;
}

.navigation a {
color: #433E52;
}

.paging-navigation .meta-nav {
background-color: #BFAB9D;
border-radius: 50%;
color: #fff;
}

.paging-navigation a:hover .meta-nav {
background-color: #433E52;
text-decoration: none;
}

Thursday, April 11, 2013

KompoZer a Dreamweaver Alternative

As I previously mentioned, I have recently found myself relocated and in a new position. Along with this came all of the expectation that I know my way around HTML and other such things. The downfall is that I have always worked with HTML in Adobe Dreamweaver, which I adore. Due to the completely new position and new computer, the fantastic (and expensive) Dreamweaver was not installed. I was handed a Microsoft Word syllabus and asked to create it in HTML so that it could later be copy/pasted into Blackboard. I found myself with the "What to do?" question repeated in my mind.

Sure, I had the capability to compose the entire thing in Notepad by hand. Or use Microsoft to develop a garbled HTML that I would then have to clean up in Notepad. Lucky for me, I am a master Googler and a proponent of all open-source and free tools! Surely, I could find a Dreamweaver alternative! I found several options, but one in particular seemed to appeal to me, KompoZer.



Perhaps I am a sucker for a well-designed website, but KompoZer had several key features that I was looking for.

  1. Free and open-source software
  2. FTP site manager
  3. Color picker
  4. Tabs for multiple HTML documents
  5. CSS editor
  6. Automated Spellchecker
  7. WYSIWYG
The WYSIWYG editor is fairly straight-forward and clean. The only downside is that you either have to be in the "Source" tab or the "Preview" tab, there is no split-screen option. Not too bad of a compromise for a free option though, all things said. Some screenshots of the tab with some HTML I pulled from my website are below.

Preview View
Source View


















Since I am using it for some pretty basic functions, it has served me well. I still have Dreamweaver on my personal computer, but it seems that I will be keeping KompoZer around on my work computer for now. It's hard to justify the money that would be spent to buy Dreamweaver when a free and workable solution is currently in use especially after a recent request for Adobe Production Premium CS6. I might put KompoZer through its paces soon in redesigning my personal website, so keep watch for an updated review on this software.