sasmitainfo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Two column layout in WordPress ?you need to modify your CSS file for this
Following code may give you some idea
x.css
#content-style ul { width:450px; hight:470px; margin:0px auto; overflow:hidden; } #content-style ul li{ line-height:1.5em; float:left; display:inline; } #content-style #double li { width:200px;}
WordPress Post
<ul id="double"> <li>new line</li> <li>new line</li> <li> new line</li> <li> new line</li> </ul>
Forum: Fixing WordPress
In reply to: how to show all posts on main pageWhat i understand from ur question ,you want to show your all posts on a particular page .
For that you don’t need to change any code just go to dashboard->settings->reading ->front page display->Astatic page …
you will get a option to show post on which page and how many post u want to show
Forum: Fixing WordPress
In reply to: the_content() not workingthe_content must be within The Loop for it to work.
Forum: Fixing WordPress
In reply to: the_content() not workingin which page you r using <?php the_content(); ?> i mean existing page or some customization you have done .
Can you please check whether looping is correct or not.
Forum: Fixing WordPress
In reply to: Any way to change temporary download folders?Following lines to be added in the config file:
define(‘WP_TEMP_DIR’, ini_get(‘upload_tmp_dir’));
putenv(‘TMPDIR=’ . ini_get(‘upload_tmp_dir’));and give those files full permission(r-w-e).
Forum: Fixing WordPress
In reply to: Images don't show in post on homepageIt depends on the theme you installed.You can set the pictite as fetured image to display on main page.
Forum: Fixing WordPress
In reply to: Sidebar appearing in content instead of right sideHI Mayeenul is right u need to work bit in theme css.
you can do following changes to your themes/colorway/style.css
you just need to add
1. TAKE A BACKUP OF style.css important
2. search for ” .content-wrapper .content-info “
3. add
float: right;
width: 300px;
4.it will look like
.content-wrapper .content-info {
margin-bottom: 20px;
float: right;
width: 300px;
}5. update the css
Forum: Fixing WordPress
In reply to: Site stuck on options.phpIt may be in your theme “all setting” page is enable.
you can check in code for following syntaxadd_options_page( __( ‘All Settings’ ), __( ‘All Settings’ ), ‘administrator’, ‘options.php’ );
n check in your function.php of your theme and can comment or change the needful.