
We build highly customized sites that are designed to reflect the owner’s aesthetic sensibilities, anticipate growth and modification, and provide an optimized experience for human artificial users.
Whether it be a fresh new website, enhancing performance and functionality of an existing website or recovery from threat or malfunction, our process ensures an efficient environment that follows best practices while being easy to work with.
We have proven that highly customized sites do not need to be complicated to manage or difficult to navigate, we make the complex simple and intuitively comprehensible.
We provide a stable, flexible and secure platform along with the support and training needed so that you may confidently manage your message!
-
Custom editor styles
for the user who needs to see what the front end styling in the editor /*— INSERTS STYLESHEET LINK FOR VISUAL EDITOR DISPLAY —–*/ function my_theme_add_editor_styles() { add_editor_style( ‘custom-editor-style.css’ ); } add_action( ‘after_setup_theme’, ‘my_theme_add_editor_styles’ ); IN FUNCTIONS FILE /* — THIS STYLESHEET IS INTENDED TO REFLECT THE FRONT END APPEARAQNCE IN THE VISUAL EDITOR —*/…
-
CSS: calling in attached fonts
when you have to load the fonts directly in the theme @font-face { font-family: ‘my_underwoodregular’; src: url(“fonts/myunderwood-webfont.woff2”) format(“woff2”), url(“fonts/myunderwood-webfont.woff”) format(“woff”); font-weight: normal; font-style: normal; } @font-face { font-family: ‘american-typewriter’; src: url(“fonts/american_typewriter.eot”); src: url(“fonts/american_typewriter.eot?#iefix”) format(“embedded-opentype”), url(“fonts/american-typewriter.ttf”) format(“truetype”); }
-
Conditional display based on excerpt
showing the full content in an archive if the excerpt is not populated < ? php if (!empty($post->post_excerpt)) : ?> < a href=”< ? php the_permalink(); ?>” rel=”bookmark”>< img src=”< ? php echo my_image_display(); ?>“/> < h1 class=”entry-title”>< a href=”< ? php the_permalink(); ?>” rel=”bookmark”>< ? php the_title(); ?>< /h1> < ? php the_excerpt();?> <…