Frumph
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Easel] Easel Version 3.3.3- How to completly remove page title“like”
Forum: Themes and Templates
In reply to: [Easel] Easel Version 3.3.3- How to completly remove page titlethe round edges are made with border-radius:
-moz-border-radius: 10px; -khtml-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;Just find the element you don’t want to be round edged and remove them
CSS wise, you cannot via CSS coloring itself because the sidebar doesn’t flush 100% down the side, however there is a ‘trick’ way of doing it by using the layer behind the narrowcolumn and sidebar’s
Looks like you’ve set the width to 1000px wide so let’s use that #
You create an image, say 5px high by 1000px wide and have the colors you want in it white on the left and that grey on the right with black line on it.
Place it inside of #content-wrapper (or #subcontent-wrapper)
#content-wrapper { background: url('images/content-wrapper.png') repeat-y; }The repeat will make it repeat all the way down.
Forum: Themes and Templates
In reply to: [Easel] Easel Version 3.3.3- How to completly remove page titleYou can do that one of several different ways, you can do it with CSS
body.page .page-title { display: none; }Or if you have a child theme, you can do it with code.
add_filter('easel_display_post_title', 'mytheme_remove_page_titles'); function mytheme_remove_page_titles($post_title) { global $post, $wp_query; if (is_page()) return ''; return $post_title; }You can modify the function displaypost.php easel_display_post_title() and wrap if (!is_page()) around it
you could copy the content-page.php file and put that into your child theme and edit it (or just straight edit it) with the following change (putting two slashes in front of the call:
// easel_display_post_title();..
Forum: Themes and Templates
In reply to: [Easel] background-overlay.png emptyput a width: 100%; in the CSS for the #page-wide {}
#page-wrap { width: 100%; background: url('images/background-overlay.png') top center repeat-x; }see if that works
Forum: Themes and Templates
In reply to: [Easel] background-overlay.png emptyI’m sorry, I am not understanding the question.
What do you want to modify? the background-overlay.png to do what?
Forum: Themes and Templates
In reply to: [Easel] Comic Easel Update Mess Up My Sitego to comic -> config and click “save” once. .that’s all
i fixed it and updated the repo with the fix probably after you got your site updated ;/ heh
Forum: Themes and Templates
In reply to: [Easel] Sidebar IDs1 month, no communication – closing.
Forum: Themes and Templates
In reply to: [Easel] Display Select Category on front page2 choices,
1. download a plugin that will let you do that without editing code.
2. or edit code, specifically the functions.php file, search for this:
function easel_init() {Inside that section is this line:
// $query->set('category__in', '8');Notice the // means it’s commented out, you would uncomment it, and put where that 8 is the category # you want to display on the front page.
… then save.
I left that commented out in the code so someone can do precisely what you’re asking with relative ease.
No idea, that’s not the Easel theme which you posted your question to, .. Not only that, but I cannot help you since I cannot find it on the repository to download and look at.
Forum: Plugins
In reply to: [Comic Easel] v.1.3.5 ?okie, updated
you can also see the dev commits here:
ah, if you tried to ‘add me as friend’ and I don’t know you I generally decline.. but if you message me via facebook, which I haven’t gotten anything from anyone recently, that would probalby have worked (without adding as friend) email: philip @ frumph dot net
Forum: Themes and Templates
In reply to: [Easel] child theme for the style-default page?Well, personally; I have better child themes that would look WAY better for your site.
A white-black look, with your content would be way more suitable, I have a few child themes on my forums that we can build from.
Man, you shoulda told me you with with the art’s, I go OUT of my way for things like that.
Contact me via my email (contact button on my http://frumph.net/) site.
Forum: Themes and Templates
In reply to: [Easel] child theme for the style-default page?.. you could always use an @import of the style-default.css in the child theme, right under the import for the style.css if you want to overwrite the look of the default design.