Is there an editable psd version of logo-top?

Posted in: Newspaper
Post count: 28

Hi there ,don’t know if there is an editalbe psd version of the logo-top.png.

And what’s this TinyMCE thing? Didn’t find it in the listings of theme required plugins.

Thanks.

  • This topic was modified 11 years by winnieji.
Post count: 6600

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

Post count: 28

Thank you.
1.about the TinyMCE,do I have to install the plugin?
2.not this one .The logo I mentioned is the one with a loop sign at left:)

Post count: 1291

Hi,

1. TinyMCE is the user interface that helps you edit posts.
2. We have a vector file, the word/text itself cannot be changed.

Thank you, Emil G.

Post count: 28

My question is do I need to install a plugin to use TinyMCE?

Thank you for your timely reply.

Post count: 6600

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

Post count: 28

hi ,how to set a link to the FOOTER COPYRIGHT TEXT. Thanks.

Post count: 28

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.
Post count: 7909

Hi,

Change this two span classes to span6, like this: http://screencast.com/t/24FG8Z9ssrD2
Result: http://screencast.com/t/zWulr5WVo

Thanks!

  • This reply was modified 11 years by Lucian.
  • This reply was modified 11 years by Lucian.
Post count: 28

OK,problem solved ,thanks.

Post count: 28

It’s great to have a login form and the interface is cool(not like the defaut wp one).But where is the register form:)

Thank you.

Post count: 6600

Hi,

Make sure you allow registration: http://screencast.com/t/jYrDyDcO then check again.

Thanks

Post count: 28

Yeah I know that option should switched on .What I mean is where to show the register form like the login one.I know by defualt wordpress can’t do this. Don’t know if I make myself clear ,thx.

Post count: 28

Problem solved ,I can see register now .But seems that login and register are bundled together.Is there a way to separate them?

Post count: 28

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.
Post count: 6600

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

Viewing 16 posts - 1 through 16 (of 16 total)
The forum ‘Newspaper’ is closed to new topics and replies.