batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: artificer homepage removing gaps between body and footerThe second block aligns your large featured product with the others vertically.
.featured-products { margin-bottom: 0 !important; } ul.featured-products li:nth-child(4n), ul.featured-products li.fourth { margin-top: -19.2%; }Forum: Themes and Templates
In reply to: [Spasalon] Hide Comments in pages but not in blog postsGo into Pages > All Pages
Click the box next to the pages you want to edit
In the Bulk Actions drop-down select edit then click apply
On the next screen select Do Not Allow in the comments drop-down
click updateForum: Themes and Templates
In reply to: [Gridiculous] Centering image in text widgetTry using margin.
<p style="margin: 0 auto;"> IMAGES </p>Or try setting the <p> in a <div>
<div style="text-align: center;"> <p > IMAGES </p> </div>Forum: Themes and Templates
In reply to: [Fruitful] Full-Width/screenSo you only want certain pages as full width and others as normal?
Forum: Themes and Templates
In reply to: how to show blog post on a static page wordpressI was able to piece something together using codex examples. Gives a title link, featured image and post excerpt in an un-ordered list.
<ul> <?php $args = array( 'posts_per_page' => 5); $myposts = get_posts( $args ); foreach ( $myposts as $post ) : setup_postdata( $post ); ?> <li> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <p><?php $thumbnails = get_posts(); foreach ($thumbnails as $thumbnail) { if ( has_post_thumbnail($thumbnail->ID)) { echo get_the_post_thumbnail($thumbnail->ID, 'thumbnail'); } } ?></p> <p><?php the_excerpt(); ?> </p> </li> <?php endforeach; wp_reset_postdata();?> </ul>Forum: Themes and Templates
In reply to: Mantra Theme Navigation BarForum: Themes and Templates
In reply to: [Fruitful] Full-Width/screenThe theme is based on a 940px wide 16 column system. You would need to convert the base grid css elements to a percentage based system most likely. Also the offset grids as-well.
Forum: Themes and Templates
In reply to: Need help adding to Post php pageThis would require editing a php file. You should create a child-theme so your changes are not erased with a theme update
Forum: Themes and Templates
In reply to: Fixing Header in Attitude theme?I changed the padding as you can see but it didn’t fix the problem
What exactly is the problem? Do you mean the mis-alignment of the title and search icon?
Forum: Themes and Templates
In reply to: Reply/comment move to bottom of post – TwentyTwelve themeThis will require making a child-theme as you will need to edit a core php file.
Forum: Themes and Templates
In reply to: Fixing Header in Attitude theme?Actually we can’t see because you have the coming soon page active.
Forum: Themes and Templates
In reply to: [Pilot Fish] I can´t erase the phrase Hello WorldPilot Fish should not have passed with instructions to edit the themes php file.
If you edit that file directly in the editor the changes will be erased if the theme is updated.
All php file edits should be done in a child-theme that way your changes are not erased.Forum: Themes and Templates
In reply to: [Openstrap] Can I change the size of the slider?Makes it smaller and centers it
Can be added to Theme Options > Custom Codes > Header Section.slider { max-width: 900px; margin: 0 auto; }Forum: Themes and Templates
In reply to: [Parament] Location of : get_header_imageNotepad ++ is has a good multi-file search for the PC side.
Forum: Themes and Templates
In reply to: [Pilot Fish] I can´t erase the phrase Hello WorldI’m surprised this theme passed inspection with those kind of instructions. You should never edit a themes php files unless your using a child-theme.
Don;t actually edit that file, you will need to create a child-theme.