Pavan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Gallery post format; more than one imagetry to use this…
'posts_per_page' => 3
this will show 3 images to post. u can change the number according to ur need.
Forum: Themes and Templates
In reply to: Fixed header and dynamic websiteplease give link to ur website or page…….
Forum: Themes and Templates
In reply to: Theme Adjustments need helpwhat help do you need…….?
your website is working properly……
please ask……Forum: Themes and Templates
In reply to: My page is not big/long enoughI can’t understand what you saying…
no lights are showing……
please elaborate……
and merry christmasyou have to put div class=”span-8 last” into div class=”container-inner”.
like this:-
<div class="container-inner"> <----your all divs----> <div class="span-8 last"> ------------- </div> </div>
after doing this. post reply and i’ll do it perfect… ok
Forum: Fixing WordPress
In reply to: I can not resize an imagegive link to your webpage. so that i can see it
You have to use custom query with arguments..
posts_per_page decides how many posts u want to show on a page.
post_type decides that u want to show post or page.$args = array('post_status'=>'publish','post_type'=>'post','posts_per_page' => 3); $cus_loop = new WP_Query($args); if($cus_loop->have_posts()): while($cus_loop->have_posts()):$cus_loop->the_post(); the_title(); the_content(); endwhile;endif;
Forum: Fixing WordPress
In reply to: Removing space between menu and page contentyou have to check the post or the page at backend, i think you have inserted these <p> and
tags there in the post or page. go there and try to remove.Forum: Fixing WordPress
In reply to: The links of pagesIn admin page, In permalink menu, when you generate the permalink. the htaccess code is generated at bottom.
just write that code in .htaccess file. If it do not exists then create one in your wordpress root directory.Forum: Fixing WordPress
In reply to: Having problems adding space after a paragraphI got the problem. You want space b/w Anticipated Recovery and Oil Recovery.
This will done if you write the oil recovery in different paragraph(<p>
).<p> <strong> <em>Anticipated Recovery of Investment:</em> </strong> Within 30 months. </p> <p> <strong> <em>Oil Recovery from Slop Oil</em> </strong> </p>
[Please post code snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: Irregular blank white pages only on IE 7 (but admin cp is fine)I don’t have IE7, but If its IE7 issue, then
use * in front of the styles you want to set specific for the IE7 browser.
e.g. if u want to change style of <h1> tag then:
h1{
color:#fff; works for normal browsers
*color:#000; only works in IE7
}you can fix any issue in ie7 with styling
Forum: Fixing WordPress
In reply to: Cannot call PHP Function to other pages of the siteTry to write this in functions.php file
Forum: Themes and Templates
In reply to: Posts are floted to left,,,Outside the Page layoutYou have exactly done the structure of divs… u r welcome
but also remove float elements i mentioned above..
there is no use of them..Forum: Themes and Templates
In reply to: Posts are floted to left,,,Outside the Page layoutI can fix. its too easy, but your div are not in right position..
Write the structure of div like this..<div class="wrapper"> <div id="sidebar"> </div> <div class="breadcrumbed"></div> <div id="uscolumnsingle"> </div> </div>
and in stylesheet:…………
remove float attribute. you have written this style two times, just remove float attribute from both.
`#uscolumnsingle{
…
}and at the end of stylesheet…….
.breadcrumbed{
float:right;
}
just remove it…..I hope it will clearly fix your problem……..
Forum: Themes and Templates
In reply to: How can I change links' colorI think mr. Kumar have solved your first ques..
Can you tell the second question more breifly, I don’t understand, what u want to say?