Logo, web site, business cards, ValPak ad, and web hosting
Miami SEO Service from $199
Be found when people search online with Miami SEO. Get your business on Google today.
You never get a 2nd chance to make a good 1st impression. This rule goes into everything we design. We hand code each web site design from scratch to be consistent across browsers both desktop and mobile devices alike using the latest W3C compliant standards. This results for cleaner design that is not only user friendly but search engine friendly as well. We specialize in designing custom wordpress themes. This gives our clients the ability to update and customize their own professionally designed site using the ease and power of wordpress.
Logo, web site, business cards, ValPak ad, and web hosting
In responsive design, often times you’ll want to change the width of elements from static to 100% wide with some margins or padding.
If you set a DIV width to 100%, margins and padding will be ignored. The solution is to reset the DIV to it’s default which is “auto” which will stretch as wide as it possible and include margins and/or padding
width: auto;
In the early days we started out designing web sites with WSIWYG software. We used Adobe GoLive. Dreamweaver (Macromedia) was the main competitor. Macromedia Flash was huge back than and we used that as well.
Designing websites with HTML tables was the norm as well as the problem. HTML tables require excessive code. Luckily CSS improvements allowed for Table-less web design. At that point we got more comfortable with coding pages by hand. SEO requires the ability to write code by hand. In fact, Doing SEO taught us how to hand code SEO.
Adobe GoLive happened to feature an excellent code editor. You just were better off ignoring the WSIWYG features. We always keep the web page we are working on open in a browser so we could see the final product. Save the file after each edit and refresh the browser to see the results. It’s a smooth workflow.
Adobe dropped GoLive shortly after acquiring Macromedia. We gave Dreamweaver a try and quickly found huge problems with the code editor.
Often you’ll want to create a hierarchy of your code elements by using tabs to keep organized make it easier to understand.
<div>
<h1>Headline</h1>
<p>
Paragraph
</p>
<ul>
<li>List</li>
<li>List</li>
<li>List</li>
</ul>
</div>
Often times while coding you’ll need to tab a bunch of lines at once. In GoLive you would simply select all the lines and tab them over or back. This necessary feature wasn’t in Dreamweaver. Indenting selected text blocks will using the tab key will delete them. Tabbing has to be done carefully line by line.
The most annoying problem with Dreamweaver is if you press the up or down key, the cursor exhibits unpredictable behavior. Instead of going straight down or up, it mostly goes to the beginning of the next line of text. This is beyond annoying when you want to paste in a new line of code and maintain your tab formatting.
After trying to be productive with Dreamweaver for a few days, and looking thoroughly for solutions, we tried a demo of BBEdit. We deleted Dreamweaver right away and purchased BBEdit. It’s hands down the best tool for coding HTML as well as other hand coding projects.
Tip: In BBEdit keyboard preferences, make sure “Allow Tab key to indent text blocks” is checked.
If you’re the only user that needs administration access to your WordPress site, then this security method may be for you. This security method will make it so that your wp-admin can only be accessed from your cpu. It can also help prevent SQL injections that exploit wp-admin.
First you’ll need to know your IP address or range.
Then add the following code to your htaccess file.
#security
<Files wp-login.php>
order deny,allow
deny from all
allow from YOUR_IP_ADDRESS_OR_IP_RANGE
</Files>
Important: Make sure you have the ability to change your htaccess file outside of wordpress’s admin in case you lock yourself out by mistake. Examples: FTP or your host’s admin panel.