wizardregis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Post Editing Area cssI believe what you are looking for is to go into wp-admin/wp-admin.css and change/add
#editorcontainer { your settings }#editorcontainer is the wrapper around the textarea in post-new.php and post.php, and #editorcontainer #content is the textarea.
Forum: Themes and Templates
In reply to: Author and Read More???Can you give us the link your site site so we can see the problem for ourselves?
Forum: Themes and Templates
In reply to: CSS and @import mycss.cssDon’t know if that space between url and ( are causing the problem.
Otherwise try add the stylesheet outside of the CSS file in the header.
<link rel=”stylesheet” href=”<?php bloginfo(‘template_directory’); ?>/mycss.css” type=”text/css” media=”all” />
And try add !important at the end of the lines to see if it’s a problem of hierarchy.
body { background:red !important; }Forum: Themes and Templates
In reply to: Image Caption TextWell, to give you a little start:
.wp-caption { } <- this is the wrap around the caption
.wp-caption img { } <- this is the image inside the wrap
.wp-caption p.wp-caption-text { } <- this is the text in the captionForum: Themes and Templates
In reply to: images – displaying inlineChange
align="alignleftto
class="alignleft"Forum: Themes and Templates
In reply to: images – displaying inlineClick on each image and “align” them to the left. Should do the trick.
Forum: Themes and Templates
In reply to: Search Function In Dewdrop Theme?Well I don’t know how the theme is designed, but tried adding the search-widget to the sidebar on the Widget page?
Forum: Themes and Templates
In reply to: Embedded videos in themesNo, it’s part of the data you import for the test. It creates a post with that code in it.
Forum: Themes and Templates
In reply to: How can I style my posts content separately?As I understand it (and it’s a bit confusing) you want to style the text-part of posts on your front page, but each one individually to each post?
If that is so, then it’s quite easy.
The code inside the wrapping DIV is actually printing all the info for you. This…
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">…turns into this:
<div class="post-4004 post hentry category-blog tag-theme" id="post-4004">It gives the DIV an individual id, individual class, and a class for categories and tags. So all you need to do to style the text for <random post #4004> is this:
First add a wrapper around the text in each post:
<div class="post-text"><?php the_content('Read the rest of this entry »'); ?></div>And then add something like this in CSS:
.post-4004 .post-text { color:red; }And it will change the text part on post with ID 4004 to red.
Forum: Themes and Templates
In reply to: Using a static, non-WP page as Front PageYes, Peter is right. What you need to do is go into your custom page and add:
<?php /* Template Name: Something */ ?>at the top, and place it in your theme folder. Then you create a new page in WordPress, and in the right sidebar select “Something” as a template. This means that the page with the above code will load when someone enters the WordPress page assigned to this template.
Then you go into Settings > Reading and under Front Page Display select “A static page” and in “Front page” select the “Something” page.
This will make anyone who open your website to see “Something” page as the front page.
And you will probably want to use the default index.php page for normal viewing of posts and pages.
Forum: Themes and Templates
In reply to: Embedded videos in themesOh? Then it’s strange that it’s included in the checklist 😉
Forum: Themes and Templates
In reply to: Theme not submitted to the WP Theme DirectoryLast themes there were updated January 7, but I dunno what order they are looking at the themes. Have two themes awaiting, one since December.
Forum: Themes and Templates
In reply to: bordersHuh, well that’s strange. It’s probably a obvious thing somewhere but hell if I can find it, don’t envy you this problem.
But as they say: if you can’t solve it with brute force, try more brute force.
.post { border:solid 1px #000000 !important; margin: 10px !important; padding: 10px !important; }Forum: Themes and Templates
In reply to: Show Widgets And Code In SidebarActually you can have both widgets and code. You just need to move
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>below the widgets you want to show.
Forum: Themes and Templates
In reply to: Increasing Margins/CSSIncrease these padding numbers. They are top, right, bottom, left.
.post .content { padding:5px 0 5px 5px; line-height:145%; overflow:hidden; }