Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Comic Easel] 2 columns on index?the new ComicPress 4+ theme is an upgraded version of Easel ;/
…and no, it’s just I don’t check wordpress.org forums often
Forum: Plugins
In reply to: [Comic Easel] Problem with calendarDo you have the ‘disable rewrite rules’ in comic easel checked in the comic -> config by chance? if you do – uncheck it and then go to settings -> permalinks and click save once
Forum: Plugins
In reply to: [Comic Easel] Set thumbnails on homepage leading to latest comicsYou can CSS the thumbnail box to have a float on it then they all line up <– –> horiz instead of vert
Forum: Plugins
In reply to: [Comic Easel] enlarge comic page in comic easel^ even with this new theme your images are 1,086px × 865px (scaled to 474px × 378px)
being scaled down
Forum: Plugins
In reply to: [Comic Easel] Comic Navigation Questionsadd_action('over-comic-top', 'mycustom_add_nav_to_top'); function mycustom_add_nav_to_top() { ceo_display_comic_navigation(); }There are action locations for every sidebar, <sidebar location>-top and <sidebar-location>-bottom
Just go to comics -> config and enable comic sidebar locations and add ^ something like the above to your child themes functions.php fileAnd since those functions need to work inside of the loop they will since you are injecting them within the area that the information is stored
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsbecause you set a white background behind .narrowcolumn in the customizer?
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsAlso have you seen?
http://www.thewebcomicfactory.com/
How they do all of their comics? Tons of em, right sidebar.
And note, you can give all of those ‘friends’ “Editor” access and not admin access and they can’t screw with stuff, just post and edit posts really.
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsThe high society theme, that yellow is an image in the images/ directory, you can just replace it with this line:
body.scheme-high #page-wrap { background: url('images/background-high-page-wrap.jpg') top repeat-x; }Just replace the url(‘ with whatever URL your own image is, you can grab that image from the directory and modify it as you wish but don’t put it back into the same directory, put it someplace else so that when the theme updates you don’t lose it.
the background for the menubar you have right now is:
body.scheme-ceasel #menubar-wrapper { margin: 5px auto; width: 98.2%; background: #5e5e5e; /* Old browsers */ background: -moz-linear-gradient(top, #8a8a8a 0%, #707070 49%, #5e5e5e 51%, #777777 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8a8a8a), color-stop(49%,#707070), color-stop(51%,#5e5e5e), color-stop(100%,#777777)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #8a8a8a 0%,#707070 49%,#5e5e5e 51%,#777777 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #8a8a8a 0%,#707070 49%,#5e5e5e 51%,#777777 100%); /* Opera11.10+ */ background: -ms-linear-gradient(top, #8a8a8a 0%,#707070 49%,#5e5e5e 51%,#777777 100%); /* IE10+ */ -moz-border-radius: 4px; -khtml-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; color: #fff; text-decoration: none; text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.15); overflow: visible; -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset; -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset; box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset; -webkit-appearance: none; padding: 6px 5px 5px; border: solid 1px #666; }Notice the plethora of webkite gradients up there, but, if you use the edit-css module from jetpack you can just override it with:
body.scheme-ceasel #menubar-wrapper { background-color: Transparent; }Or find a guide online to doing css gradients there’s some tools that will give you the code to replace it whenever you want.
There’s also a border: in there and such you can set to none; or 0
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsThat’s your choice, but I told you how to make an easy link landing page by using /?latest=# #= chapter number
Forum: Plugins
In reply to: [Comic Easel] Compatibility with auto-posters?^ And that’s why I love you peeples 😉
Forum: Plugins
In reply to: [Easy Google Fonts] Feature request^ that code is exactly what I need, thanks!
and yeah; I will. heh didn’t expect you to see that
Forum: Plugins
In reply to: [Easy Google Fonts] Feature requestYou have a very good point 😉
That will work fine, undoubtedly, i’ll just write up an article so that people can understand what that means.
Forum: Plugins
In reply to: [Easy Google Fonts] Feature requestMaybe with a custom add_theme_support section for it, where you can put those params, that’d be a great way of doing it
http://codex.wordpress.org/Function_Reference/add_theme_support
Forum: Plugins
In reply to: [Easy Google Fonts] Feature requestand i’m going to have 6 of those functions inside my theme then going to have another 6 functions to filter the other ones like tt_default_body .. .. hrm.. little excessive, would be nice to do it in one swell swoop with a single filter
Forum: Plugins
In reply to: [Easy Google Fonts] Feature request^ Right, but the change also needs to modify the label name too ? it’s currently not doing that
(yes the font control label)