Recent Topics

1 Jun 07, 2009 23:16    

My b2evolution Version: Not Entered

This is a silly little question that I hope someone can answer for me off of the top of their head.

Please see http://www.timmystutor.com

You'll notice that the Edit link and icon for the blog post (top of post to right...this is a photo blog adapted to show cartoons) appears a line too high up and is partially cut off. Obviously in formatting the page I touched something I shouldn't have.

Does anyone know where in the maze of CSS for the blog I need to go to fix this misalignment. I really don't want to have to delete the blog and start all over! That gives me a headache just thinking about it.

Thanks so much. Ya'll are huge helps.

2 Jun 07, 2009 23:43

Well, without being logged in, a visitor doesn't see your "edit post" link.
If your saying it's on the same line as 05/24/09 02:01 , Categories: etc etc ( just above the cartoon ) you have to realise that that line expands to show tags etc and that it's most likely pushing anything floated right out of alignment.

I would move your "edit" link to below the post in the same row as "Leave a Comment" etc

What skin is your skin "timmy" based on?

3 Jun 08, 2009 00:09

The skin is based on Asevo...and putting the edit in the bottom line is not a problem if you could tell me where to do that and how ;o) THANKS

4 Jun 08, 2009 00:56

Ok..
First things first: Make a backup copy of files that your going to edit.
Now, open the the index.main.php file for your "aseveo/timmy" skin and find and delete the following...

<?php
				$Item->edit_link( array( // Link to backoffice for editing
						'before'    => ' ',
						'after'     => ' ',
						'class'     => 'floatright small'
					) );
			?>

Now..further down in that file you wil find....

<div class="evo_post_foot">
				<?php
					// Link to comments, trackbacks, etc.:
					$Item->feedback_link( array(
									'type' => 'comments',
									'link_before' => '',
									'link_after' => '',
									'link_text_zero' => '#',
									'link_text_one' => '#',
									'link_text_more' => '#',
									'link_title' => '#',
									'use_popup' => false,
								) );
				 ?>
				<?php
					// Link to comments, trackbacks, etc.:
					$Item->feedback_link( array(
									'type' => 'trackbacks',
									'link_before' => ' &bull; ',
									'link_after' => '',
									'link_text_zero' => '#',
									'link_text_one' => '#',
									'link_text_more' => '#',
									'link_title' => '#',
									'use_popup' => false,
								) );
				 ?>
			</div>


And add the following to the above....

<?php
                 // Link to Edit the Post:
				$Item->edit_link( array( // Link to backoffice for editing
						'before'    => ' ',
						'after'     => ' ',
					) );
			?>


as follows....

<div class="evo_post_foot">
				<?php
					// Link to comments, trackbacks, etc.:
					$Item->feedback_link( array(
									'type' => 'comments',
									'link_before' => '',
									'link_after' => '',
									'link_text_zero' => '#',
									'link_text_one' => '#',
									'link_text_more' => '#',
									'link_title' => '#',
									'use_popup' => false,
								) );
				 ?>
                               <?php
                                // Link to Edit the Post:
				$Item->edit_link( array( // Link to backoffice for editing
						'before'    => ' ',
						'after'     => ' ',
					) );
			?>
				<?php
					// Link to comments, trackbacks, etc.:
					$Item->feedback_link( array(
									'type' => 'trackbacks',
									'link_before' => ' &bull; ',
									'link_after' => '',
									'link_text_zero' => '#',
									'link_text_one' => '#',
									'link_text_more' => '#',
									'link_title' => '#',
									'use_popup' => false,
								) );
				 ?>
			</div>

Good luck...

5 Jun 08, 2009 01:16

Worked like a charm! Thank you for helping me with my elementary problem! Everyone here helps me learn more about the code with each issue. Ya'll are wonderful. Sue

6 Jun 08, 2009 01:19

Cheers, glad it worked.


Form is loading...