cosmozara
Forum Replies Created
-
Forum: Plugins
In reply to: [WPCasa Advanced Search] Wpcasa advanced searchThank you very much :D………..
Forum: Plugins
In reply to: [WPCasa] Single layoutThx Simon i did it…..
Forum: Plugins
In reply to: [WPCasa] Single layoutAnd here is my content .php file and it seems all is ok:
<?php
/**
* The default template for displaying content. Used for both single and index/archive/search.
*
* @package
* @subpackage Template
*/if(is_single()) {
do_action(‘before_single_content’);
echo ‘<!– Post Content –>’;
echo ‘<article class=”single-inner”>’;// Post Content
echo ‘<div class=”inner-content”>’;the_content();
echo ‘</div>’;
echo ‘<!– //Post Content –>’;do_action(‘after_single_content’);
} else {
get_template_part(‘layouts/blog-large’);
}
//wp_link_pages( array( ‘before’ => ‘<div class=”page-link”><span>’ . __( ‘Pages:’, ‘contempo’ ) . ‘</span>’, ‘after’ => ‘</div>’ ) ); ?>
Forum: Plugins
In reply to: [WPCasa] Offer arrayMuch abliged btw your plugins are awsome :D…..
Forum: Plugins
In reply to: [WPCasa] Changing price positionTy very much :D…..
Forum: Themes and Templates
In reply to: Changing width on single.phpOk now i have an issue with smartphone and tablets :D…..it seems im gonna need to make custom single.php but if anyone knows how to adjust this without making new single.php it would be great :D.
Forum: Themes and Templates
In reply to: Changing width on single.phpDbking thx did this the trick ??
#archive #main-content, #search #main-content, #single #main-content, #page #main-content {
margin-top: 10px;
margin-right: 250px;
margin-bottom: 10px;
margin-left: 250px;
}Hmm but now it changed all full widht pages to that setup…..
Hmm im confused if i make it like this:#single #main-content, {
margin-top: 10px;
margin-right: 250px;
margin-bottom: 10px;
margin-left: 250px;
}Nothing happens…
Hmm noob me i didnt saw comma P yep now it works like this:
#single #main-content {
margin-top: 10px;
margin-right: 250px;
margin-bottom: 10px;
margin-left: 250px;
}Forum: Fixing WordPress
In reply to: Changing div to cssTy i made id my adding post id like this:
.page-id-1862 #unitegallery_2_3 {
height: 0px !important;Ty for your help.