Frumph.NETWork

I'm in your site, touching your stuff.
  • Home
  • Archive
    • Incoming Links
  • Contact
  • Documentation
    • FAQ
    • ComicPress ChangeLog
  • Downloads
    • ComicPress Child Theme’s
    • Easel
    • Easel Child Themes
    • Plugins
Twitter Facebook RSS
Home » Page 6

Donate to Development

Latest Beta’s

ComicPress
  • 06/08/2011 - released
  • Download: ComicPress ver 2.9.3.1
Easel
  • 06/05/2011
  • Download: Easel ver 2.0.8

Latest Music

  • How You Make Me Feel
  • Song for Sophie
  • On A Blue Moon
  • The Only Exception
  • A Father’s Love (Ethan Song)

Categories

  • Blog (36)
    • Articles (5)
    • BookOfPhilip (5)
    • Dream Journal (1)
    • News (9)
    • Random Thoughts (3)
  • ComicPress Child Themes (3)
  • ComicPress Manager (1)
  • Design (1)
  • Guide (2)
  • Information (1)
  • Twitter (1)
  • Uncategorized (3)
  • WebComic (6)
    • Rascal (6)
  • WebComic Planet (4)
  • Wordpress (58)
    • Comic Easel (2)
    • ComicPress (15)
    • Easel (5)
    • FAQ (7)
Dec17

Questions to think about weekend on #twitter

by Phil (Frumph) on December 17th, 2010 at 6:11 am
Posted In: Twitter

This weekend on twitter (@frumph) I will be posing questions to everyone, some like the ones I did earliar start out with basic randomness like What do you think about if someone said “psychotic miniature bear” if you answered sore thumbs or imagine this, both acceptable you would get a point.

Then along the lines the last question is “Last question, what 2-3 words can describe your webcomic and can someone ELSE use those words to describe your webcomic, worth 5 points.”

Where it then becomes “something to think about” What describes your comic in a way that if someone *else* said it, they would think of your comic, like hook words. If you had one that seemed acceptable you earned the 5 points.

- I meant to ask what 2-3 descriptors (not words)

I’ll be doing several others this weekend, the winner will win a Squishable elephant that i’ve been trying to give away as a prize this last month ;)

- Phil

note: I’m deducting points for #ff spam and giving them for #webcomicfriday ‘s  ref: http://theoatmeal.com/comics/follow_friday

Current Score:

@thebestjeremy +3
@realityamuck +3
@cartoonmoney +3
@pinkertonpark -1
@maciapaladin +5
@agent_x +10
@kallisti_x +1
@thedrunkfools +5
@houseofmuses +0
@tearsnpaincomic +1
@n9uxu +1
@pcweenies +1
@rabbitandcrow -1
@entitiesrus -1

@ginpu +1

 Comment 
Dec15

How to distribute child-themes with your parent theme

by Phil (Frumph) on December 15th, 2010 at 5:48 am
Posted In: Wordpress

A very large issue with child-themes is distribution, the need and want to have your child theme available to your end users so they can have a different variety of looks available that go along with your parent theme.

The following is the method on how to include your child themes with your main parent theme download.

The WordPress Dev team doesn’t recommend this method. In the future there will be child-themes available to be added to the repo, however this is just a side note on how to implement it if you want to.

The first step is to create a directory in your parent theme called “child-themes” and inside that directory, toss all of your child themes that are available for your parent theme into it.

Then, open up your parent themes functions.php file and we’re going to add some code to it, preferably where you init your other functions.

add_action('init', 'easel_init_child_theme_directory');

function easel_init_child_theme_directory() {
	register_theme_directory(get_template_directory().'child-themes');
// fix for windows servers and the  / issue.
	add_filter('stylesheet_uri', 'easel_fix_path');
}

function easel_fix_path($stylesheet_uri) {
	$stylesheet_uri = str_replace('', '/', $stylesheet_uri);
	return $stylesheet_uri;
}

Using the above addition to your functions.php file is telling WordPress to register the child-themes directory that is IN your template directory (parent) as an additional theme directory to look at for themes. Also take note to use the instead of / when using the register_theme_directory() function.

The next step is adjusting your child themes css import, normally with a child theme you would import by going up one directory and then back down to the parent theme directory to find the style.css of the parent, like so:

@import url('../easel/style.css');

However, since the child themes are now being stored within the parent we need to change the location of where to find the style.css of the parent for importing, such as this:

@import url('../../style.css');

Basically going up two directories to where the parent themes template root is.

.. and that’s it. Now when people activate the theme and go to look in the appearance -> themes, it will also show all the child themes you have available AND you now can distribute your child themes with your parent theme, even on the WordPress.org repository.

- Phil

└ Tags: Child Theme, distribute, How-To
 Comment 
Dec12

What ComicPress.NET has to offer.

by Phil (Frumph) on December 12th, 2010 at 5:16 am
Posted In: Uncategorized

With the introduction/move from the other ComicPress site, I’m going to take this time to explain some of the things ComicPress.NET has to offer.

  • Free Installation/Setup of WordPress & ComicPress on your hosting.
  • Free Emergency Hosting for when you really need it and having difficulties with your current hosting (1 – 2 months).
  • Technical Support forums from the community and developer(s).
  • A chat system for direct communication and assistance.
  • A mailing list – direct – communication with other ComicPress users to discuss issues or Comic discussions
  • Downloadable child-themes
  • Documentation and Guides to using WordPress and ComicPress
  • Forum areas for WebComics who would like a forum area.
  • WebSite Designing, Cleanup and Support services available.

More stuff that ComicPress.NET and myself will have to offer coming soon.

└ Tags: ComicPress.NET
3 Comments
Dec10

Browser Specific CSS

by Phil (Frumph) on December 10th, 2010 at 9:22 pm
Posted In: Guide

With ComicPress, you can specify unique and individual changes for each browser type, including mobile devices. [1. This is a ComicPress specific ability, won't work on other themes.]

Browser Specific ‘targetting’ CSS element identifiers:

.lynx
.gecko
.opera
.ns4
.safari
.chrome
.ie
.iphone

Basically if you use any of these identifiers *before* another css Class or ID in your css it will specifically only be used for that browser that views the page.

For example:

.somecssbox {
      margin-top: 10px;
}

^ The above will make a margin-top of 10px on whatever CSS element you chose, however say it doesn’t look correct in IE browsers because IE does whatever IE does and gives it another additional pixel.

So this is how you override it by being browser specific”

.somecssbox {
      margin-top: 10px;
}

.ie .somecssbox {
      margin-top: 9px;
}

All browsers will use the margin-top: 10px; and because you put the .ie .somecssbox directly after it, all IE based browsers will use the 9px margin-top. Which fixes the look of your site specifically for IE.

You of course can do this for all the other browser types as well. [2. iphone refers to most mobile phones apparently.]

└ Tags: css
 Comment 
Dec09

ComicPress 2.9.2.27

by Phil (Frumph) on December 9th, 2010 at 11:21 am
Posted In: News

A couple noteworthy things to take note of from the Changelog.

Link Colors

The link color for text links has changed to a blue color and /darker/ of that blue color if someone visited that link.

a { }

is now

a:link { }
a:visited { }

So if you have modified link colors on your site you will need to adjust using the a:link, and a:visited as appropriate.

p.s. don’t forget

a:hover {}

for the mouse over-hover color

the menubar base color css element changed

In a previous revision I have finally fixed the menubar where it doesn’t collapse before showing. Which some people updating to .27 will notice their custom colors have changed, its a simple fix. Every instance of .menubar in your custom css change to .menu

.menubar {}

Is Now

.menu {}

New Footer text Options

Also there are new ‘footer’ text copyright options in the ComicPress Options -> [general tab][footer] area, where you can specify a specific copyright name instead of the site name and a unique / seperate URL for that copyright holder if the author has a seperate personal site other then their comic, if you leave those blank it defaults to the current site.

#subcontent-wrapper

the #subcontent-wrapper area is now available on all layout styles, although on the  layouts it wasnt on previous it will only contain a section like the .narrowcolumn area instead of it and the sidebar.

Latest Thumbnail widget is now just Thumbnail

The latest thumbnail widget is now called Thumbnail where there are now a few more options.
You can now specify the 1st comic in the category you chose as well as even set it to display a random comic from the archive.

If you choose it is written that it will never display the same comic that is currently displayed on the site.

└ Tags: ComicPress 2.9.2.*, Release
 Comment 
  • Page 6 of 23
  • « First
  • «
  • 4
  • 5
  • 6
  • 7
  • 8
  • »
  • Last »

Random Pinup

2009-10-08-Monica-Villarrea

Most Recent Logins

adrinojasklao00richardheadstrong33cuzimjoekittylyndacharlesbeers4articlejohn24zigerdavidalexrayersprinkelbkevinvarsa54bloomcreptpaul638dernoaaiggy33

Control Panel

  • Register
  • Recover password

Pages

  • Archive
    • Incoming Links
  • Blog
  • Documentation
    • Custom Avatars
    • Custom Menubar
    • Getting Started
    • Installation Instructions
    • Navigation Buttons
    • Recommended Plugins
  • Downloads
    • ComicPress Child Theme’s
    • Easel Child Themes
    • Plugins
  • Easel
  • FAQ
    • ComicPress ChangeLog
  • Frumph’s Plugin Certification
  • Hire Me
    • Portfolio
  • Incoming Links
  • Members

©2008-2011 Philip M. Hofer (Frumph) | Powered by WordPress with Easel | Hosted on Frumph.NETwork | Subscribe: RSS | Back to Top ↑

79 queries. 18.25 mb Memory usage. 1.260 seconds.