Hello,
How and where can i change te text of the read more bottons on a page?
And how and where can i change the text of the search tool in my footer?
Cheers
Hello,
How and where can i change te text of the read more bottons on a page?
And how and where can i change the text of the search tool in my footer?
Cheers
Hey,
Using Firebug, I can see that the CSS controlling the style of the Read More links can be found here:
.wrapper a, #main #sidebar .textwidget a {
border-bottom: 1px solid #FF9000;
color: #777777;
}
style1.css (line 214)
.wrapper a {
text-decoration: none;
}
style.css (line 756)
.more-link {
background: url("../images/skin1/bullet_orange.png") no-repeat scroll right 15px transparent;
}
style1.css (line 206)
.more-link {
display: block;
line-height: 16px;
padding: 9px 0 0;
width: 72px;
}
style.css (line 735)
You can modify the style by editing the elements, or create your own styles and include them at the end of the style.css file. Note that the style1.css file is in the CSS folder in the theme directory.
To modify the search form, open up footer.php and on line 73 you should find this code:
<div id='sitesearch_footer'>
<h4>Search Site</h4>
<?php get_search_form(); ?>
</div>
You can modify the text or remove the element as needed.
James
Thnx so much for your reply! However i still have a questions with the second issue..
1. <div id='sitesearch_footer'>
<h4>Search Site</h4>
<?php get_search_form(); ?>
</div>
Above is not to be found in footer.php, see for yourself:
<?php
$pageinfo = array('full_name' => 'Footer Options', 'optionname'=>'footer', 'child'=>true, 'filename' => basename(__FILE__));
$options = array (
array( "type" => "open"),
array( "type" => "group"),
array( "name" => "Contact Button Line 1",
"desc" => "Enter the first line of text to display within your contact button.",
"id" => "button1",
"std" => "Contact Form",
"size" => 20,
"type" => "text"),
array( "name" => "Contact Button Line 2",
"desc" => "Enter the second line of text to display within your contact button.",
"id" => "button2",
"std" => "get in touch with us",
"size" => 20,
"type" => "text"),
array( "name" => "Button Link",
"desc" => "Select the Page the button should link to",
"id" => "button_link",
"type" => "dropdown",
"subtype" => "page"),
array( "type" => "group"),
array( "name" => "Copyright Text",
"desc" => "Enter your copyright text here",
"id" => "copyright",
"std" => "This site uses valid HTML and CSS. All content Copyright © 2010 DISPLAY, Inc",
"size" => 75,
"type" => "text"),
array( "type" => "group"),
array( "name" => "Facebook Account",
"desc" => "Enter the name of your facebook account to create a small icon link within your footer",
"id" => "acc_fb",
"std" => "",
"size" => 20,
"type" => "text"),
array( "name" => "Flickr Account",
"desc" => "Enter the name of your flickr account to create a small icon link within your footer (looks something like this: 34166943@N05 )",
"id" => "acc_fl",
"std" => "",
"size" => 20,
"type" => "text"),
array( "name" => "Twitter Account",
"desc" => "Enter the name of your twitter account to create a small icon link within your footer",
"id" => "acc_tw",
"std" => "",
"size" => 20,
"type" => "text"),
array( "type" => "group"),
array( "type" => "close")
);
$options_page = new kriesi_option_pages($options, $pageinfo);
Hey,
You're looking in the wrong footer.php, you're in display/theme_options/footer.php while James meant display/footer.php.
On line 74 you'll find what James said.
Could you be so kind to show me the way to this php file?
i think i'm tpo much of a beginner.. ;-)
i have a footer.php and a footer_backend.php
Thnx in advance.
You need to download footer.php. Use a ftp software like filezilla and navigate to wp-content/themes/display. You'll find footer.php in this folder.
Thnx
Concerning the read more link!
I just want to chance the text of it, where do i do this?
Cheers, Joost
There're several read more button: In archive.php, in template_blog.php and in display\framework\classes\kclass_display_box.php
Thnx, problem solved. Thnx the both of you..
Glad that you solved the problem :)
OK Similar Question:
Broadscope theme
How can I change the text of the read more button for just the portfolio page and not the blog?
You can change the text in broadscope/includes/loop-portfolio.php
You must log in to post.