Frumph
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Easel] Full Widthmodify the width in the css element #page
Meh, one of those threads I used #page-wide when it’s supposed to be #page-wrap ;/ my bad, anyways
Apparently I made that distinction inside that thread ;/ a post just a couple down.
#page-wrap { background-image: none; }It’s in the style-default.css
Recommend you put it in your child theme, or jetpack’s css editor; or if you have neither of those, edit the style-default.css directly and comment out or delete the #page-wrap element
Forum: Themes and Templates
In reply to: [Easel] How to make the header fill the entire page width?if you’re using appearance -> header; there’s options on its page for that
Forum: Themes and Templates
In reply to: [Easel] How to automatically display comments in blog posts?..there is.. it’s just not .. right? all of the posts having comments is going to be encumbersome and i’m not really sure how it will work if you use any plugins like jetpacks comments and such that modify the look of the comment section and the comment-reply javascript might go all out of whack, however.. search for $withcomments for the proper directions for how to do it
Forum: Themes and Templates
In reply to: [Easel] How to remove Blog title from title?add_filter('wp_title', 'easel_filter_wp_title');add two // in front of it
// add_filter('wp_title', 'easel_filter_wp_title');Line #7 at the top of the functions.php file.
Forum: Themes and Templates
In reply to: [Easel] How to make the header fill the entire page width?First thing you do is remove the constrains of the 980px width that is holding that section.
#page { width: auto; }Next is you reconstrain the rest of the items ‘except’ the #header
#menubar-wrapper, #breadcrumb-wrapper, #content-wrapper, #footer { width: 980px; margin: 0 auto; }That will make the #header { } not be constrained by 980px and you can then make it as wide as you want.
However, you’re going to find that it’s going to mess up the look on almost all browsers, if those browsers were to minimiaze their width and not be full screen all the time, especially mobile browsers.
Putting the wide image in the #page-wrap would be more appropriate and then just padding the #header section to have it display
Forum: Themes and Templates
In reply to: [Easel] How to automatically display comments in blog posts?in the easel options, set the amount of posts to display on the ho me page to 1 then enable the option to display comments on home page
Forum: Themes and Templates
In reply to: [Easel] How to automatically display comments in blog posts?.. they should be doing that automatically, it’s not written to ‘not’ display them.
Did you check your settings -> discussion in your wp-admin?
In the upper right hand corner of the post/page editor there’s ‘screen options’ checkmark the ‘discussion’ one to have it display the checkbox to either enable or disable comments for that post/page.
Forum: Fixing WordPress
In reply to: Homepage 404 Error Messageyour home page still exists (from what you describe) it’s just that your hosting doesn’t see the index.php file that it requires to run, you probably got rid of it
FTP into your site and copy a fresh version of wordpress onto your hosting or just replace the files you deleted
What happens, with hostings is that there’s always a ‘fallback’ page when it can’t find the appropriate index.html or index.php files that it needs to serve to the end user.
IMO it sounds like you should be talking to the support with your hosting to see if they can rectify the situation if you are not confident to FTP a fresh copy yourself
Forum: Plugins
In reply to: [Comic Easel] Comic Easel PolylangNo, not very correct but if it works, i’m not going to complain right?
heh. Since I have a terrible time contacting those plugin developers this is probably the best that it’s going to get
Forum: Themes and Templates
In reply to: [Easel] Change colour of background and add^ correct on the warning you can get rid of that warning by wiping empty the background->appearance area I think ?
Forum: Themes and Templates
In reply to: [Easel] Change colour of background and addyou can use the edit CSS again and just do
Yeah, that’s the hokeyness of the way that appearance -> background is handling things ;/
Probably best to just use the EDIT CSS
body { background-color: #c6eff7; background-image: none; }will do it, remove the background image and set that background color you wanted
background: #c6eff7 url('http://linktoimage.jpg') top center repeat;is another way of writing the background css element if you use an image .. there are other controls to it and are easily searched for
Forum: Themes and Templates
In reply to: [Easel] Change colour of background and addThe dots in the background are part of the style-default.css in an entity called #page-wrap .. you can remove that if you like.
appearance -> editor [select style-default.css]
Or if you’re using the jetpack plugin, use the edit css and add this:
#page-wrap { background-image: none; }Forum: Themes and Templates
In reply to: [Easel] How to remove Blog title from title?yeah just comment out the // add_action for the wp_title at the top of the functions.php
Forum: Themes and Templates
In reply to: [Easel] How to remove Blog title from title?Easel uses a filter on wp_title, if all in one SEO doesn’t use that filter then it should, and over write it.
I recommend yoasts SEO anyways