Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » Center area post/pages » Post-Kicker, -Byline & -Footer »

How to change HR line?


  #1  
Old Nov 13, 2010, 04:10 PM
aclime
 
31 posts · Oct 2010


Look at the colors which are my problems.

Green - looks like it's HR line. I searched all theme options but can't find how to change it.

Red - my border looks like is bigger and it should be like in the right. It doubles or what? How to fix this?

Blue - I need to delete this. Can't find out how.

Thanks for help!
  #2  
Old Nov 13, 2010, 04:48 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
My best guess is those are borders in several area of the theme options. For instance you look in ATO>Style and edit Footer>Footer Style you may see a border there. Some of the other may be in Next/Previous navigation or in Style Post and Pages.

If you go through all the areas looking for border in the CSS you will not only find out how to ger rid of or change them you will become more familiar with many of the options.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #3  
Old Nov 14, 2010, 02:16 AM
aclime
 
31 posts · Oct 2010
Thank you for your help. That was sidebars with border-bottom.

Next question

I have added HR line after posts, look at my screenshot


But after a few posts it just dissapears


I want to show hr line after each post. How to fix this?
  #4  
Old Nov 14, 2010, 07:09 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Where did you add it and how did you add it?
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #5  
Old Nov 14, 2010, 07:27 AM
aclime
 
31 posts · Oct 2010
ATO>Configure EXERPTS>Custom read more

Code:
<br /><br /><b><a href="%permalink%">Skaityti toliau &rarr;</a></b><hr />
Looks like it shows on news which got read more link. How to show it in all news?
  #6  
Old Nov 14, 2010, 07:46 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
You are probably only seeing those when an excerpt is showing. You may be able to add the hr tag in ATO>Style & edit center columng>The Loop or perhaps put a bottom border on the Post Container styled like you want in ATO>Style Posts & Pages.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #7  
Old Nov 14, 2010, 08:07 AM
aclime
 
31 posts · Oct 2010
Thank you, works now.

Is it possible to add vertical lines below widgets? Look at my images:

Before


After
  #8  
Old Nov 14, 2010, 10:51 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
I think you mean horizontal lines. How about a border for the widgets in ATO>Style Widgets?
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #9  
Old Nov 14, 2010, 11:41 AM
aclime
 
31 posts · Oct 2010
I can't find how to show borders below widgets. Can you point me to setting which I need to edit? Looks like I can edit only widgets, not below them...
  #10  
Old Nov 14, 2010, 10:18 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Go to ATO>Style Widgets and add something like the following to the Widget Container box.

HTML Code:
border-bottom: 2px solid #eeeeee;
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #11  
Old Nov 15, 2010, 03:01 AM
aclime
 
31 posts · Oct 2010
No... Don't work for me. Forget that, I got one more important problem. I use List category posts and WP-PostViews. I created table and it works perfect: link but when I add one column for postviews and code it breaks my whole site.

Now look at my code, how I add it.

Code:
<?php
//Show category?
if ($cat_link_string != ''){
	$lcp_output = '<p><strong>' . $cat_link_string . '</strong></p>';
}else{
	$lcp_output = '';
}
$lcp_output .= '<table width="100%" border="1"> 
<tr>
    <th>Pavadinimas</th>
    <th>Komentarų skaičius</th>
    <th>Parašymo data</th>
    <th>Post Views</th>
  </tr>';//For default ul
//Posts loop:
foreach($catposts as $single):
	$lcp_output .= '<tr>
    <td><a href="' . get_permalink($single->ID) . '">' . $single->post_title . '</a></td>';
	//Show comments?
	if($atts['comments'] == yes){
		$lcp_output .= '<td>' . $single->comment_count . '</td>';
	}
	//Style for date:
	if($atts['date']=='yes'){
		$lcp_output .= '<td>' . get_the_time($atts['date_format'], $single).'</td>';
	}
    echo '<td>';
    if(function_exists('the_views')) { the_views(); }
    echo '</td>';
	//Show author?
	if($atts['author']=='yes'){
		$lcp_userdata = get_userdata($single->post_author);
		$lcp_output .=" - ".$lcp_userdata->display_name;
	}
	//Show content?
	if($atts['content']=='yes' && $single->post_content){
		$lcpcontent = apply_filters('the_content', $single->post_content); // added to parse shortcodes
		$lcpcontent = str_replace(']]>', ']]&gt', $lcpcontent); // added to parse shortcodes
		$lcp_output .= '<p>' . $lcpcontent . '</p>'; // line tweaked to output filtered content
	}
	//Show excerpt?
	if($atts['excerpt']=='yes' && !($atts['content']=='yes' && $single->post_content) ){
		$lcp_output .= lcp_excerpt($single);
	}
	$lcp_output .='';
endforeach;
$lcp_output .= '</table>';
?>
This is how my site looks broken


Maybe you can help me? I'm really not good at php, I think I made some mistakes or what? Why it breaks my whole site? Please help me if you can

Last edited by aclime; Nov 15, 2010 at 03:04 AM.

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I change font of blog title and tag line? karenclark Header configuration & styling 6 Sep 5, 2011 03:58 PM
Change color of post footer box divider line pltrace Post-Kicker, -Byline & -Footer 4 Jan 13, 2010 01:42 PM
[SOLVED] How do I change background colour for date line? MoneyMagnets Post-Kicker, -Byline & -Footer 2 Aug 13, 2009 02:33 PM
How to change the line-height for list items escamoteur_blog Header configuration & styling 1 Aug 4, 2009 01:48 PM
How to change dotted border line in the layout to solid line? araneum Atahualpa 3 Wordpress theme 1 Feb 21, 2009 06:40 PM


All times are GMT -6. The time now is 04:00 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.