florenciacazaban
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar not working with search or tagstried it but didn’t work.
anyways, i came with a different solution, which was copying search.php from default theme: got no errors and search function works just fine!
and as for the tag-footer issue, as i couldn’t fix it, i rearranged footer.all solved then.
thanks for your time and assistance! ??Forum: Fixing WordPress
In reply to: Sidebar not working with search or tagsi′ll start with the search problem… i checked what you suggested and there are both of the things you said. i tried to erase home_post_box_last from here
div class="home_post_box home_post_box_last"
but nothing changed. then i erased the this full line:
<?php if($x == 1) { echo '<div class="clear"></div>'; $x = -1; } ?>
but it only modified the first line of the search results parcially as you can see:
https://www.lafabricadepensamientos.com/blog/?s=lugares&x=0&y=0i′ll show you the code so you can tell me what to erase (or modify) and what not to change. Sorry for this request but i′m a newbie… this is my search.php:
<?php get_header(); ?> <div class="blog_left"> <?php $x = 0; while (have_posts()) : the_post(); ?> <?php if($x == 1) { ?> <div class="home_post_box home_post_box_last"> <?php } else { ?> <div class="home_post_box"> <?php } ?> <!--<img src="<?php //bloginfo('stylesheet_directory'); ?>/images/blog-image.jpg" />--> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('home-post'); ?></a> <div class="home_post_title_cont"> <h3><?php the_title(); ?></h3> <h4><?php the_category(); ?></h4> </div><!--//home_post_title_cont--> </div><!--//home_post_box--> <?php if($x == 1) { echo '<div class="clear"></div>'; $x = -1; } ?> <?php $x++; ?> <?php endwhile; ?> <?php if($x != 1) { echo ''; } ?> <div class="clear"></div> </div><!--//blog_left--> <?php get_sidebar(); ?> <div class="clear"></div> <?php get_footer(); ?>
thanks!!
Forum: Fixing WordPress
In reply to: Sidebar not working with search or tagshi alchymyth
The Sweeper !!click here to see issue with tag and footer formating:
https://www.lafabricadepensamientos.com/blog/etiqueta/pensamientos-en-imagenes
and here to check how excerpts display when running a search:
https://www.lafabricadepensamientos.com/blog/?s=lugares&x=0&y=0
theme doesn’t come with a tag.php, BUT i added one following the code in twenty ten theme. i did this because, as i said, the theme currently installed did not support tags and i figured that copying it straight from another theme would work (in fact, tags DO work fine, the only problem is this issue with the format).
search.php was already in the theme.i downloaded the theme from the designer’s web (dessign.net)
thanks again ??
Forum: Fixing WordPress
In reply to: align title below image in blog's front pagehey there!
i finally got to do it right!
i actually used a whole different solution, which was editing my logo with the title right inside it. that way i don’t have to trouble with the alignment.
thank you for your time and assistance.
Forum: Fixing WordPress
In reply to: align title below image in blog's front pagetried:
#site-title a { color: #333; font-weight: bold; text-decoration: none; position:relative; left:15px; }and
#site-title { float: left; width: 210px; padding-right: 40px; overflow: hidden; line-height: 27px; font-size: 23px; text-align: center; }
but still no go.
i did refresh the page, though nothing changed. i also tried opening the blog with firefox and internet explorer unsucessfuly.
maybe the problem has to do with the way i set the logo in the first place. i did it at header.php
this was the original line:
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
which i replaced with:
<a href="<?php echo home_url( '/' ); ?>"><img src="https://www.thefactoryofthoughts.com/blog/wp-content/uploads/2012/07/Untitled-1_2.jpg" alt="<?php bloginfo( 'description' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"align="left" /><?php bloginfo( 'name' ); ?><br><br><?php bloginfo( 'description' ); ?></a>
just wondering…
Forum: Fixing WordPress
In reply to: align title below image in blog's front pagedid the style.css change but it didn’t work…
here is what my line looks like:
#site-title { float: left; width: 210px; padding-right: 40px; overflow: hidden; line-height: 27px; font-size: 23px; position:relative; left:15px }
i’m still not following you on the h1 thing…
i should remove the image, then what?thanks for your patience ??
Forum: Fixing WordPress
In reply to: align title below image in blog's front pagethanks for the quick response.
sorry about my next questions, i’m just a newbie!please confirm content of line 30 in style.css.
is it line:
.menu ul { list-style-type: none; }????
so do i just put the line you gave me between the brackets?
also, i didn’t get your last statement… i’ve read about h1 tags but i wouldn’t know where to insert it. please walk me into the procedure.