Vignesh Pichamani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can i call the page in Index.phpfixed …….
Forum: Fixing WordPress
In reply to: Logo too bigdon’t remove anyother line in css make undo and try it
hope its help you!!!!!
Forum: Fixing WordPress
In reply to: Logo too bigif you want to fit it correctly to home page means
1)Kindly added the line in the custom_style.css (line:6)
add margin-top:-30px;
2)or if you need to resize the image by using css like that
max-height:—px
max-width:—-pxRegards,
vicky..Forum: Fixing WordPress
In reply to: How to Remove this Horizontal Section of Page?Remove the line in style.css 354
i.e.,.entry-header { background: transparent url(images/entry-header.png) top left repeat-x; border-bottom: 1px solid #800517; }
remove the border-bottom: 1px solid #800517;
hope it will help youForum: Fixing WordPress
In reply to: Change permalink broken imagesKindly change the permalinks from day&name to post name,hope its will help you to make the URL like this https://codenamefuture.nl/bombardement
Forum: Fixing WordPress
In reply to: How to adjust settingshttps://www.ads-software.com/extend/plugins/user-submitted-posts/
hope this plugin will help you ….Forum: Fixing WordPress
In reply to: ADD LINK Not workinguse in href link <?php echo get_site_url();?>/oak/KOTH.html <a href="<?php echo get_site_url();?>">/oak/KOTH.html">Alpha test url</a>
hope it will help for you
Regards,
vickyForum: Fixing WordPress
In reply to: sidebar sizeHi Dan, Kindly remove the line in css i.e., style.css line 60
padding-left:9px; remove it and check hope its helpful for you!Regards,
viky…Forum: Fixing WordPress
In reply to: Add side bar to a page that displays the posts of one categoryyou welcome
Forum: Fixing WordPress
In reply to: Add side bar to a page that displays the posts of one categorysee again my edited code place the sidebar after the </div> and before the footer
Forum: Fixing WordPress
In reply to: Add side bar to a page that displays the posts of one categoryshall i view your site ?
Forum: Fixing WordPress
In reply to: Add side bar to a page that displays the posts of one category<?php /*
Template Name: ListPostsInCategoryThatHasSameNameAsPage
*/ ?><?php get_header(); ?>
<div id=”primary”>
<div id=”content” role=”main”><?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1> <?php the_title(); ?> </h1>
<?php the_content(); ?>
<?php endwhile; else: endif; ?><?php query_posts(‘category_name=’.get_the_title().’&post_status=publish,future’);?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1>“><?php the_title(); ?></h1>
<p><?php the_content(); ?>
<?php the_date(‘F Y’); ?>
<?php endwhile;?></div><!– #content –>
<?php get_sidebar(); ?>
</div><!– #primary –><?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Dashboard no longer appears after changing subfolderMe too have the same issue
Forum: Fixing WordPress
In reply to: show full text in posts in intrepidity themekindly replace
the_excerpt
intothe_content
Forum: Fixing WordPress
In reply to: My header image is loading…interestinglykindly replace in your style.css line:61 max-width:100% into width:100%
i think its helpful for you