Frumph
Forum Replies Created
-
.. well that code above shoulda let you have that.
Maybe if you linked your site I can clean up the CSS and relay what you need CSS wise to make it look good?
.. You probably don’t have this correctly in your style.css of your child theme maybe
.narrowcolumn { width: 750px; } body.home .narrowcolumn { width: 550px; }Keep it in that order.
soo uh, you want your front page wider then all of the other pages? cause that will happen ifyou keep the width and also add the sidebar ..
did you write this line correctly? in the layout-foot.php file?
if (easel_is_layout('2cr,2crw,3c,3cr') && is_home()) easel_get_sidebar('right');?
IF you are using an alternate page on the home page then you would need to use is_front_page(), let me rewrite that line
if (easel_is_layout('2cr,2crw,3c,3cr') && (is_home() || is_front_page())) easel_get_sidebar('right');There, that will make it so that people who use a static page as the front page it will work with.
Forum: Themes and Templates
In reply to: [Easel] How to remove the Side Bar From Easel themeoh, also .. sidebar’s can be disabled on “pages” just by using the options in the Easel Option and on the page editor, checkmark the button that’s there
you wrote that you didn’t want the right sidebar on anything but the home page… you’re saying it’s not showing up on the home page?
nevermind.
No you’re doing everything correct, but it seems since you can’t copy files to your server via FTP that would be an issue with your hosting.. probably not having permissions to write directories.. or files in those directories, to which case you need to talk to your hosting
.. not my problem about not being able to drag folders over, need to contact your hosting on that.
Could be an ftp ownership permission issue that they would have to fix.
well just FTP into your wp-content/themes/easel-child/ directory, check whats there, if nothings there ftp over that style.css you created, also copy over the layout-foot.php as explained above
If you are using the default style you should probably import that as well directly under the other import
@import url("../easel/style-default.css");What is the name of the zip file, what is the name of the file inside the zip file? is it style.css ?
Are you able to FTP into your hosting? using an FTP program like winscp ?
Forum: Themes and Templates
In reply to: [Easel] Why does my site change things on its own?^ i’ve seen this happen when people copy and paste from a word document into the post editor.
Which is a no-no.
^ as soon as you create your child theme, so you don’t lose your customizations; copy the layout-foot.php from the main theme into the child theme directory.
Edit the layout-foot.php search for:
if (easel_is_layout('2cr,3c,3cr')) easel_get_sidebar('right');and change it to:
if (easel_is_layout('2cr,2crw,3c,3cr') && is_home()) easel_get_sidebar('right');Then, in your child themes style.css file (which doesn’t have anything inside of it right now except the @import) you add this:
.narrowcolumn { width: 750px; } body.home .narrowcolumn { width: 550px; }Which will make it so that on all pages use 750px width on the narrowcolumn (content section) BUT overwrite that on body.home (home pages) to be 550px;
Forum: Themes and Templates
In reply to: [Easel] Change Header Area to Animated Banner?animated .gif’s work just fine
You should add this CSS
#sidebar-above-header { width: 980px; margin: 0 auto; display: block; }Which will make the sidebar above the header align properly with the rest of everything else down below (if you’re using a wide layout), if you’re using a narrow 2 column layout it’s 780px;
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Adding code to thumbnail.php widget?^ this can be tagged as solved. the thumbnail.php widget is part of the Comic Easel plugin and I implemented support for this plugin, into that plugin.