Tag Archives: css

Circlecube Freshens Up … for you!

Thanks for your patience as I’ve been tinkering with the theme, layout and css of circlecube.com. I started with a free theme from Justin Tadlock, Options Theme, available at theme hybrid. I’ve changed that theme quite a bit, from restyling it to fixing bugs I found and updated many other things on the site as well. [...]
Posted in portfolio | Also tagged , , , , , , , , | 2 Comments

Sally Kolar Photography

Sally, a great photographer in the Augusta, GA area wanted help putting up a website that was easy to maintain and looked professional. I helped her out and set her up with a wordpress install, some essential plugins and a few themes! She is ecstatic! Check out the site here: http://sallykolar.com/ and book her if you’re [...]
Posted in portfolio | Also tagged , , , , , , , , | 1 Comment

APB Speakers Website

Website designed and implemented for American Program Bureau. Integartes flash content and video with html, all styled with css. Mock-up designed and approved with photoshop; built and implemented with dreamweaver (html/css) and flash. Visit the live site at American Program Bureau.
Posted in portfolio | Also tagged , , , , , , , , , , | Leave a comment

APB Website | Before and After

APB are the guys who organize public speakers, whoever you saw speaking at the last graduation or other ceremony was probably done through the American Program Bureau. They have connections! Many many people, from movie stars, to famous writers, to nobel peace prize winers! So for your next party, give them a try. They had [...]
Posted in portfolio | Also tagged , , , , , , , , , , , | Leave a comment

SuperBookMarker Web App Design

Social Bookmarking master site built for StomerNet SMARTS (Social Marketing Traffic Secrets) members for easy social bookmarking. Minimalist design for clear presentation of organized sortable data. Implemented javascript (jquery) libraries for sorting and paging tables, javascript used to control visibility of elements on the page. Very simple and organized design, but still contain loads of [...]
Posted in portfolio | Also tagged , , , , , , , , , | Leave a comment

Style htmlText with CSS in your Actionscript | Flash/CSS Tutorial

Overview In flash you can have text areas that are rendered as html. You can also apply formatting styles to this html. This will show a simple example on how to apply css to html text in flash. I’ll do a simple anchor tag style to show you the ropes. We’ll style a link to be [...]
Posted in tutorial | Also tagged , , , , , | 15 Comments

Calling actionscript functions through HTML text | asfunction Tutorial

Add this to the list of things I should have already known! Story I’ve got an html enabled text box and was trying to devise a way that I could have a hyperlink anchor tag not link to a webpage but actually do something flash. It didn’t seem possible, and I looked through all the different html [...]
Posted in tutorial | Also tagged , , , , , , | 10 Comments

Using CSS Attribute Selectors to Stylize HTML | Style outbound links | Tutorial

Intro to CSS We use css to apply styles to certain elements on the page, we can target any div like this: HTML 1<div>Text</div> CSS 123div { css-property: value; } Any class selector <div class=”divClass”> like this: HTML 1<div class="divClass">Text</div> with this: CSS 1234567div.divClass { css-property: value; } <!-- or simply --> .divClass { css-property: value; } or any id selector, <div id=”divID”> like this: HTML 1<div id="divID">Text</div> with this: CSS 1234567div#divID { css-property: value; } <!-- or simply --> #divID { css-property: value; } These are [...]
Posted in tutorial | Also tagged , , , , | Leave a comment