Hi,
You can find more info about TinyMCE here: http://codex.wordpress.org/TinyMCE
If you refer to this one: http://screencast.com/t/jNaJM9lV we do have the psd of it but isn’t vector file and the text can’t be changed, if you still want to have it send an e-mail at contact@tagdiv.com and we will send it to you, please paste the URL of this topic in your message.
Thanks
Hi,
You don’t need a plugin, the editor which you have in the backend, that is TinyMCE editor: http://screencast.com/t/uFh0TeJ7iVI9
Thanks
ok ,a mistake ,link can be set .But the problem is that the text stacks.Seem that there is a text length limit.So the question is how to make the FOOTER COPYRIGHT TEXT stay in one line instead of beginning a new line when words hits limits .THx.
-
This reply was modified 11 years by
winnieji.
Hi,
Change this two span classes to span6, like this: http://screencast.com/t/24FG8Z9ssrD2
Result: http://screencast.com/t/zWulr5WVo
Thanks!
hi,how to rewrite <title>…</title>for the homepage? The defualt one is “Newspaper|Subhead”,I want to change it to “Newspaper-Subhead” while the other pages keep using the format of “article title|Newspaper”.
I know the code below will work out ,but not sure if it’s appropriate for this theme.As I can see ,the theme has already changed the default page title “Newspaper|article title” of wordpress,but don’t know if there is a consideration for keywords and description auto generation which the code below covers.
<title><?php if (is_home() || is_front_page() ) { ?><?php } else {?><?php wp_title(”); ?> | <?php } ?></title>
<?php if (is_home() || is_front_page()){
$description = “”;
$keywords = “”;
} elseif (is_single()){
if ($post->post_excerpt) {
$description = $post->post_excerpt;
} else {
$description = substr(strip_tags($post->post_content),0,220);
}$keywords = “”;
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {
$keywords = $keywords . $tag->name . “, “;
}
}
$description=strip_tags($description); ////screening out HTML、PHP tags
?>
<meta name=”keywords” content=”<?=$keywords?>” />
<meta name=”description” content=”<?=$description?>” />
-
This reply was modified 11 years by
winnieji.
Hi,
You can find the title tag in the header file: http://screencast.com/t/yexe7dmSp8pA
Alter it as you like. As for the code you’ve sent I believe it also adds an description (post excerpt), keywords(tags) on post pages, I’m not sure how it will work, the theme doesn’t have an option for that.
Thanks
