Thimothe
Forum Replies Created
-
Forum: Themes and Templates
In reply to: remove border on my headerDo you have a live version of your site ? It would make it easier to find out why the border is showing.
If it really is a border, you could create a child theme and then apply custom css to that element to remove the border.
For example:
#header{border: none;}Let me know if you need more help.
Forum: Themes and Templates
In reply to: [Portfolio Press] Portfolio Page: How to change order of items?Glad to know it worked,
You’re welcome.
Forum: Themes and Templates
In reply to: Cannot postIt sounds to me like the account you are using is not allowed to publish and your content has to be reviewed by an editor, administrator or super admin (see Roles and Capabilities). You should login with higher privileges.
Let me know if you need more help.
Forum: Themes and Templates
In reply to: [Portfolio Press] Portfolio Page: How to change order of items?The easiest way would be to change the post date of your items. Otherwise, I read you could use the Post Types Order plugin which I haven’t tried.
I hope this helps.
Forum: Themes and Templates
In reply to: [Celebrate] Limit post number on home pageHi, you will find the answer to your question on this thread: http://wordpress.org/support/topic/limit-number-of-posts-on-home-page-to-ten?replies=2
Best regards
Some themes have an option for a favicon (name for the small icon next to the address bar) and you should find it in your theme’s options. If there is no such option, you can manually replace your icon using FTP.
Here are the instructions on Creating a Favicon
Let me know if you need more help.
Forum: Fixing WordPress
In reply to: From Subdomain to MainYou’re welcome. Let us know if you need more help.
Forum: Installing WordPress
In reply to: Can't installIf you want your site to be hosted and accessible at all time without it being hosted on your local computer, you will need a hosting package. There are many available hosts around but I do not want to do promotion for one of them. Google “How to chose a web host”
Forum: Installing WordPress
In reply to: Can't open wordpressTo get WP working, you will need to install it on your domain. The files should be unzipped there or unzipped locally and then uploaded on your server. Then, you’ll need to follow the Installing WordPress procedure.
Zanko, it would be helpful if you pasted the link to your site to see what happens and why your WP doesn’t show up.
Regards,
Tim
Forum: Fixing WordPress
In reply to: From Subdomain to MainThe article Moving WordPress will give you all the options. Happy move and congrats on going live.
Forum: Themes and Templates
In reply to: Theme: Twenty Twelve, add search barit seems that it is the placement of your <div id=”nav-search”> in the code which creates the issue. Beingn part of the hgroup which is displayed as block, it appears in that block which rests on top of your menu and that is how Chrome displays it. It is also how I would expect Firefox to display it.
Why did you move the nav-search in hgroup ? You can leave it where it was before and it will work in all browsers.
Forum: Themes and Templates
In reply to: Theme: Twenty Twelve, add search barHi Joshua,
Edit the style.css file as mentionned before, adding
#nav-search { float:right; margin-top:5px; }The float will make the search element go all the way to the right. The margin-top will nudget it down a bit. Feel free to experiment with other values than 5px.
Good luck
Forum: Themes and Templates
In reply to: [Sporty] Bullets too far tothe left.Glad to see you got it fixed. Have a great day.
Forum: Themes and Templates
In reply to: Theme: Twenty Twelve, add search barSorry, my bad. I meant to say theme css.
Quick fix which is not recommended:
Just add
#nav-search { float:right; }
to your style.css of Twenty Twelve.The down side of this is that when there’s an update of the theme, you’ll lose customization done in the theme’s files.
Better way:
Create a child theme (http://codex.wordpress.org/Child_Themes)
Apply all your css changes to the child theme. This way, your customization are separate from the theme itself and not lost when the theme is updated.I hope this helps. Have a great day.
Forum: Themes and Templates
In reply to: [Sporty] Bullets too far tothe left.hi,
the issue is that some style definitions are resetted in your style.css. You’ll have to define a padding-left for your ul elements.
Look for a custom css styling option in your theme where you can add
ul { padding-left:40px; }which should solve your issue.