Nicholas Chen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Powen Lite] Changing font sizewhat theme are using?
Forum: Themes and Templates
In reply to: Show date and time on postswhat theme are you using?
Forum: Themes and Templates
In reply to: Show date and time on postsif your theme doesn’t have the option to do so you will need customize your theme templates.
this might help you:
Forum: Themes and Templates
In reply to: [Powen Lite] Changing font sizeare you hosting your own site or just have a site on wordpress.com?
Forum: Themes and Templates
In reply to: [Mk] Change the header title positionuser firebug in Firefox or inspect element in Chrome to find the css class of the header then add it to your css and add this code:
text-align:right;
or if that doesn’t work try
float:right;
to make it green you can do the same thing and use:
color:(what ever your color is);
if I could see your actual site I could be more specific.
Forum: Themes and Templates
In reply to: [Optimizer] Horizontal Images on PageI think this is what you want:
<br style=”float:clear;”>
Forum: Themes and Templates
In reply to: [Twenty Fourteen] change colorYou’ll need to change the background property for these 3 classes/Ids:
.site-header, #secondary, and .site:before
So if you add these lines of css that should change the color to white.
.site-header {
background-color:#ffffff;
}#secondary {
background-color:#ffffff;
}.site:before {
background-color:#ffffff;
}Just change #ffffff to the color you want.
Forum: Themes and Templates
In reply to: Remove the word Home on homepageTry adding this line to the CSS:
.home header.entry-header {
display: none;
}Forum: Themes and Templates
In reply to: [Vantage] Image Hover Effectsyou could try adding the image you want underneath and add css to hide the image on top during hover.
Forum: Themes and Templates
In reply to: [Optimizer] Horizontal Images on Pageif you know how to add css to your theme you can add this line of code and that will stack the images horizontally instead of vertically.
.squareDemo {
float: left;
}Forum: Themes and Templates
In reply to: [Fukasawa] Text Colorgo into your wordpress dashboard and select Appearance then Customize. There should be an option for you to change colors.
Forum: Plugins
In reply to: display only first 10 categoriessorry. here is correct code:
<ul> <?php $job_categories = wpjb_form_get_categories(); foreach ($job_categories as $cat) : ?> <li><a href="/jobs/find/?query=&category=<?php echo $cat['value']; ?>"><?php selected($cat['value'], $param["category"]); ?><?php echo $cat['description']; ?></a></li> <?php endforeach; ?> </ul>
Forum: Themes and Templates
In reply to: custom post page for child themefigured out the issue. had to change to permalinks to /%category%/%postname%/ so it doesn’t conflict with the portfolio or blog post types.
what am i looking for within the error logs?
Forum: Themes and Templates
In reply to: how to display taxonomies with my posts in twenty eleven themenot quite what i was looking for. i don’t want a tree list. below the post were it says “posted in <categories>” i want it to display my taxonomies instead. is this possible?