maikunari
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Space between header en browserDo you mean the space between the navigation menu and the blue bar beneath it?
Forum: Themes and Templates
In reply to: Thumbs are shown smaller than I wanttry adding the name of the image size inside of the_post_thumbnail()
<?php the_post_thumbnail('medium'); ?>
like so:
<a title="<?php printf(__('Permanent Link to %s', 'framework'), get_the_title()); ?>" href="<?php the_permalink(); ?>"><?php the_post_thumbnail('medium'); ?><?php add_theme_support( 'post-thumbnails' ); /* post thumbnail settings configured in functions.php */ ?></a>
Forum: Themes and Templates
In reply to: Centering page titles in page buttonsIn you style.css file
find this:
.menu li a {
color: #121212;
display: block;
padding: 0 15px;
text-align: center;
width: 100%;
}change text-align: center; to text-align: left;
Forum: Themes and Templates
In reply to: Heatmap Theme – remove Header highYou could try adding this to your style.css file.
ins{
display: none !important;
}Forum: Fixing WordPress
In reply to: Images will not centerCould you post a link to the site in question?
Forum: Themes and Templates
In reply to: Making my header more wideIn your style.css file find this:
#header #headerimg {
width: 450px;
margin: 0;
display: block;
height: 94px;
text-decoration: none;
}Then change width to the width you’d like, full width would be 960px.
Forum: Themes and Templates
In reply to: Space between header en browserCan you post a link to the site in question?
Forum: Plugins
In reply to: Is there a plugin that can do thisMeteor Slides might be what you’re looking for if I understand what you’re looking for correctly.
Look for the file combined.css
in it you’ll find a rule called blockquote,
reduce the width from 90% to something like 65%.That will have all your text sit beneath the images.
Forum: Themes and Templates
In reply to: Removed Sidebar now Content in Wrong PlaceAwesome, yup just add margin-left: 120px; and you should be good.
Forum: Themes and Templates
In reply to: Removed Sidebar now Content in Wrong PlaceYou may have removed the sidebar by just deleting :
<div id=”sidebar”>
<?php get_sidebar(); ?>
</div>but that leaves the extraneous php there serving no purpose, so better to get rid of it and keep everything neat and tidy.
Also, to remove the in, just delete the text “in” that comes before the <?php the_category(‘,’) ?> you deleted.
Forum: Themes and Templates
In reply to: Removed Sidebar now Content in Wrong PlaceYup, to get rid of the sidebar everywhere you’ll need to remove it from index.php, single.php, page.php and 404.php
This is the chunk you want to remove, just to make sure you don’t run into the same problem.
<?php
if(my_sidebar_position() == ‘right’){
?>
<div id=”sidebar”>
<?php get_sidebar(); ?>
</div>
<?php
}
?>Forum: Themes and Templates
In reply to: Removed Sidebar now Content in Wrong PlaceIn the style.css file about a third of the way down you’ll find this:
div#content { width:550px; padding:10px 0px 10px 15px; float:left; text-align:left; background:#000;}replace that with this:
div#content { width:550px; padding:10px 0px 10px 15px; float:left; text-align:left; background:#000; margin-left: 120px; }
Forum: Themes and Templates
In reply to: Removed Sidebar now Content in Wrong PlaceOh sure, no this will be in your stylesheet, a file called style.css
Also, make sure to do the same change with the category business in single.php, click the title of your post on the homepage to see what I mean.
Forum: Themes and Templates
In reply to: Removed Sidebar now Content in Wrong PlaceNo problem at all,
to center the text find: div#content and add this rule
margin-left: 120px;