rochee_jd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to create wordpress themeHi, found this with a quick Google search: https://www.killersites.com/wordpress/videos/wordpress-template-01.php
But what really helped me is at Lynda.com though non-members only have limited videos to watch, they provide files for you to start working on a theme template.
Forum: Themes and Templates
In reply to: Licence for pictures of theme Twenty Ten 1.2Hi Tinkalein,
I think you wouldn’t have any problem with using their image as it’s under the GNU license agreement. But I make it a point to give credit when I use resources from other sites and stuff.
And maybe we could wait for other comments to come as I’m not 100% sure.. ??
Forum: Themes and Templates
In reply to: "X" marks are showing on pageKindly check the link you provided. It just shows a blank page.
Forum: Hacks
In reply to: Can't save array optionsHi pbaylies, sorry for the late reply.. I got it working now and you were right! Thanks for the tip.. ??
Forum: Themes and Templates
In reply to: Strange horizontal line on Twenty Eleven pagesIn your style.css file, look for this code:
.hentry, .no-results { border-bottom: 1px solid #DDDDDD; margin: 0 0 1.625em; padding: 0 0 1.625em; position: relative; }
and erase
border-bottom: 1px solid #DDDDDD;
Forum: Themes and Templates
In reply to: hidden smiley face???What smiley? I didn’t see anything.
Forum: Themes and Templates
In reply to: Two homes on minimatica themeOh now I get it! Did you try in setting it in the theme settings under appearance? Set your home page to gallery view. And the rest as blog.
Forum: Themes and Templates
In reply to: Two homes on minimatica themeDo you mean you want to put the slideshow and then the posts underneath it?
Forum: Themes and Templates
In reply to: Increasing space between postsHi, I looked at the css code of your site and noticed that each post doesn’t have its own div so if you want to increase/decrease the space in between the posts, I would suggest to increase the margin in the title.
To do that find this code in your css file:.post_meta { margin-top: 65px; padding: 0; text-align: left; }
and increase/decrease the margin.
Hope this helps.. ??
Forum: Themes and Templates
In reply to: Two homes on minimatica themeMaybe you didn’t set the front page in the Reading Settings? If so just go to Settings -> Reading and set your front page display.
Hope this helps. ??
Forum: Themes and Templates
In reply to: Grey box next to post titles? Mystique themeLook for core.css in your theme files. Then look for this line:
.hentry.thumb-left .post-thumb { float: left; margin-right: 10px; }
Then add this piece of code:
display: none;
Forum: Themes and Templates
In reply to: [Plugin: Custom Post Template] Gallery Theme, Full-width ThemeCan you share the link of the site?
Forum: Themes and Templates
In reply to: Multiple style sheets in a theme?Great! could you please mark this topic as resolved? Thanks.. ??
Forum: Themes and Templates
In reply to: Multiple style sheets in a theme?Great, let us know if this worked. ??
Forum: Themes and Templates
In reply to: Multiple style sheets in a theme?Instead of the code you gave, try something like this:
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style_footer.css">
Hope this helps.. ??