piyashrija4488
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Help needed : want to insert page navigation at top of headerfor horizontal navigation code should be <div id="navigation") <ul> <li> home</li> <li> about</li> </ul> css #navigation ul{ list-type:none; list-decoration;none;} #navigation li{display:inline;} modify css this way u will get horizantal navigation
Forum: Themes and Templates
In reply to: Help needed : want to insert page navigation at top of headerfor horizontal navigation code should be
<div id=”navigation”)- home
- about
css
#navigation ul{ list-type:none; list-decoration;none;}
#navigation li{display:inline;}modify css this way u will get horizantal navigation
Forum: Themes and Templates
In reply to: place sidebar correctlyif
top:500px is not working then
use negative
top:-500px;Forum: Themes and Templates
In reply to: place sidebar correctlylike
top:500px;
left:840px;Forum: Themes and Templates
In reply to: how to show lastest posthey pande
thanks for response
i think u didnt read my post properlyForum: Themes and Templates
In reply to: place sidebar correctlyok
if u dont want to increase width of our body then i am afraid u can put sidebar2 this way.
may be u can decrease ur post width and increase little bit of body width.next option is
go to step where u start from.
then
float sidebar 2 left or right
position:relative;
top: give position u required to bring back to sidebar 1
left: give positioning u required
this should fix may vary with screen resolutionForum: Themes and Templates
In reply to: place sidebar correctlyset #principal { margin: 0 auto; width: 830px; } setit width:1000px;
Forum: Themes and Templates
In reply to: place sidebar correctlythat may be case because ur body width is narrow
Forum: Themes and Templates
In reply to: place sidebar correctlysorry know its not working but this is the right way to align both side together
have to check whole css to figure out problem
??Forum: Themes and Templates
In reply to: Drawing with CSS or phpi assume u can do with jquery instead like #dot{ border-bottom:1px dashed #ffffff; } jquery $document.ready(function(){ var headingwidth=$('#heading').width();//#heading is id assign to heading in css $('#dot').css("width":headingwidth+"px"); });
Forum: Themes and Templates
In reply to: place sidebar correctlycan u paste the change code
Forum: Themes and Templates
In reply to: place sidebar correctlymake single file and use logic above
and call sidebar() onlyForum: Themes and Templates
In reply to: how to show lastest posthey any one out there
Forum: Themes and Templates
In reply to: place sidebar correctlysorry please use sidebar12 instead of sidebar in first div i didnt saw ul using same id
Forum: Themes and Templates
In reply to: place sidebar correctly`sidebar 1 ur code
<div id=”sidebar1″>
<ul id=”sidebar”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?>- <?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
- <h2>Archives</h2>
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
-
<?php wp_get_archives(‘type=monthly’); ?>
<?php wp_list_categories(‘title_li=<h2>Categories</h2>’); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php wp_list_bookmarks(); ?>- <h2>Meta</h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
- Valid <abbr title=”eXtensible HyperText Markup Language”>XHTML</abbr>
- <abbr title=”XHTML Friends Network”>XFN</abbr>
- WordPress
<?php wp_meta(); ?>
<?php } ?>
<?php endif; ?></div>
sidebar 2 your code
<div id=”sidebar2″>
<ul id=”sidebar”>
<div>-
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(2) ) : else : ?>
<?php endif; ?></div>
now my code
<div id:”sidebar”>
<div id=”sidebar1″>
<ul id=”sidebar”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?>- <?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
- <h2>Archives</h2>
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
-
<?php wp_get_archives(‘type=monthly’); ?>
<?php wp_list_categories(‘title_li=<h2>Categories</h2>’); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php wp_list_bookmarks(); ?>- <h2>Meta</h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
- Valid <abbr title=”eXtensible HyperText Markup Language”>XHTML</abbr>
- <abbr title=”XHTML Friends Network”>XFN</abbr>
- WordPress
<?php wp_meta(); ?>
<?php } ?>
<?php endif; ?>
</div>
<–side bar 2 –>
<div id=”sidebar2″>
<ul id=”sidebar”>
<div>-
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(2) ) : else : ?>
<?php endif; ?></div>
</div><–sidebar–>
now use css i gave u before