gransar
Forum Replies Created
-
Hi can you expand on this? I’m new to this. How do you communicate with the seller how much is paid for shipping? What if the buyer wanted to pay more for faster shipping options while another buyer didn’t mind waiting 50 days for the free option? How are others dealing with this issue? can you advise what I should do?
- This reply was modified 3 years, 9 months ago by gransar.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] lazy loading error messagesite background color may need changing too…
very nice site.
for border try something like this:
border:18px solid rgba(250, 250, 250, 0.4) !important;sometime a code from the child theme gets overwritten by the existing code, so you have to change the code in couple of places. See if that works..
Forum: Themes and Templates
In reply to: [Hueman] Display full posts on front pageHi Tim! You do realize this is a general wordpress forum … nevertheless it is the right place. If you provide a link to your blog it would help.
Maybe you can take advantage of “sticky” feature of the posts which keeps them at the top of everything else.Forum: Themes and Templates
In reply to: [Theme: Responsive] Attempting to resize post width.can you post the link?
I wouldn’t recommend fiddling with size because it vary from one screen to another. Probably creating a new table class, from the existing is the best way to go.Forum: Themes and Templates
In reply to: showing posts at a different pageI thought copy/past of the relevant portion of the code from index.php would work:
get_header(); // Loads the header.php template if (have_posts()) : ?> <div id="blog-wrap" class="blog-isotope clearfix"> <?php // Loop through each post while (have_posts()) : the_post(); get_template_part( 'content', get_post_format() ); endwhile; ?> </div><!-- /post --> <?php wpex_pagination(); // Paginate your posts endif; get_footer(); //get template footer ?>
but it would only list one page instead of loading posts. I found and used this code from codex which worked fine, except of a minor formatting error: The posts are not stacked correctly (if you compare this with the home page) in the way that after the highest post pushes all the next post bellow it and creates long gaps in between. Where is home page getting the code so I can load that up instead of creating a new one?
get_header(); // Loads the header.php template $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( // Change these category SLUGS to suit your use. 'category_name' => 'art', 'paged' => $paged ); $list_of_posts = new WP_Query( $args ); ?> <?php if ( $list_of_posts->have_posts() ) : ?> <div id="blog-wrap" class="blog-isotope clearfix"> <?php /* The loop */ ?> <article> <?php while ( $list_of_posts->have_posts() ) : $list_of_posts->the_post(); ?> <?php // Display content of posts ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> </article> </div><!-- /post --> <?php //twentythirteen_paging_nav(); wpex_pagination(); // Paginate your posts ?> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </div><!-- #content --> </div><!-- #primary --> get_footer(); //get template footer ?>
Forum: Themes and Templates
In reply to: [Theme: twentyeleven] readjustmentour avatars look very capable
Forum: Themes and Templates
In reply to: [Theme: twentyeleven] readjustmentHi WPyogi. My child seems ok.
I’m experience problems with the css side of things. I like to include the search function along with navigation and the navigation along with the site title and description all in the same line. However the result I got is responsive.Forum: Themes and Templates
In reply to: [Customizr] Change background of right menugot links?
Forum: Themes and Templates
In reply to: [Leaf] 'About Me' text for the homepageyou are probably posting in the wrong place…
as for the about, it would be just a page you make. Then you can go navigation menu and include on through the dashboard. As for the featured articles, it depends on how theme is making posts “featured” and you would have read documentation or consult the designer. It is usually through a tag/category that posts become featured…
gransar.netForum: Themes and Templates
In reply to: How to make posts narrowergreat site!
it seems your theme is fluid (the width is determined by the window size), so that when your window is smaller it fills the gap. You could specify a max-width see how it works(line 152 of style.css)
add the second line.post {
margin-bottom: 40px;
max-width: 380px;
}and increase margin-left of #content (line 276) to increase
the space on the left:
margin-left: 426px;good luck,
gransar.netForum: Themes and Templates
In reply to: Removing Grey Border in Headerthere is a
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
originating in line 555 of #access of style.css in
your them. you will have to overwrite that in your
child theme as suggested above.Forum: Plugins
In reply to: [WP Slider Plugin] do_shortcodeyeah this code solved my issue as well
Forum: Plugins
In reply to: [WP Slider Plugin] how to display post as content slider on the home pageagain a short introduction on wordpress support would have been very helpful. I have tried to follow the images here and the slider shows momentarily before disappearing. Here is my site:
https://www.manARTgallery.com