Thimothe
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] linking banner not workingI wish you all the best and lot of fun with the new theme.
Forum: Themes and Templates
In reply to: Discover Slider positioningThanks, please post a new message here when your site is live and I’ll go have a look.
Forum: Themes and Templates
In reply to: [MesoColumn] linking banner not workingHi Femming,
sorry for misunderstanding about your issue. I went back to your site and all the banners disappeared. Can you let me know when they’re back so I can have another look.
Forum: Themes and Templates
In reply to: 2011 Archives In Default Chronology. I want the reverseI just noticed that this post relates to WP 2.7 which dates from 2008.
You can have a look at Reverse the Post Order.
Here’s an old plugin which might do what you want: http://wordpress.org/plugins/post-sorting-reloaded/ I haven’t tried it though.
I’ve read that this plugin could reverse the archive post order and it has been maintained: http://wordpress.org/plugins/post-types-order/
Last option would be to consult this article: http://youneedfat.com/reverse-post-order-genesis-framework/ it is focused on the Genesis Framework but will work for a regular WP installation.
Hope this helps. Let me know if you need more help.
Forum: Themes and Templates
In reply to: [MesoColumn] linking banner not workingHi Flemming,
You should replace #link by the link to your site. To help with further updates of your site and as a good practice, instead of hard coding your url, use site_url() in your header.php
Also, if you make changes to your theme, consider using Child Themes to prevent overwriting changes on theme updates.
Forum: Themes and Templates
In reply to: Changing Responsive styleHi Going4Quests,
Can you provide URL to your site? It’ll help us better assist you.
Depending on your theme, it is possible that you’ll need to create a Child Theme if there is no option to change the Custom CSS for your theme.
In which cases do you want the changes of layout to appear?
Have a look at CSS Media Queries.
Hope this helps.
Forum: Themes and Templates
In reply to: [Snapshot] Menu ProblemHi chillPhoto,
First of all, you’ll need to edit some css either through a Custom CSS option from your theme or by using a Child Theme.
You need to make your menu bar wider by adjusting
#menu-main-menu-container .menu ul { width: WhatIsAppropriateForYourDesign; }Then the menu items need to display as inline-blocks and add padding between your menu items.
#menu-main-container .menu .menu-item { display: inline-block; padding:0 10px; }Lastly, it seems like your logo is taking too much horizontal space. If you want your menu to display properly, you’ll have to reduce the width of your logo.
Hope this helps. Let me know if you need more help.
Forum: Themes and Templates
In reply to: Discover Slider positioningHave a look at Chrome Dev Tools or Firebug. It will help you see your html and make changes to it at see the result live. It really is a time saver for me.
And next time, you can post a link to your site. It is really helpful to people assisting you in pinpointing how your page displays.
Let me know if you need more help.
Forum: Themes and Templates
In reply to: [Customizr] Hover text colorYou’re welcome. I’m glad it helped and sorry about the missing :hover, I guess I was too tired.
Forum: Themes and Templates
In reply to: [Customizr] Hover text colorAre you looking to change the text color on hover ? If so, the rule would be
.nav .menu-item a {
color:YourColor;
}If you’re talking about the background color, use this:
.nav .menu-item {
background-color:YourColor;
}Hope this helps.
Forum: Fixing WordPress
In reply to: From Subdomain to MainYour welcome, I’m glad it worked
Forum: Themes and Templates
In reply to: [TwentyTwelve] Wrapping Blog TitleYou are welcome.
Forum: Themes and Templates
In reply to: Cange color on 1 menu-itemYou are welcome.
In case you didn’t know about these, there are tools for Chrome, Firefox and IE which let you inspect your styles (and much more) from the browser and make changes on the fly. It is really helpful when you design your page or want to modify a few things.
Chrome Developer tools: https://developers.google.com/chrome-developer-tools/
Firebug: getfirebug.com
Forum: Themes and Templates
In reply to: [TwentyTwelve] Wrapping Blog TitleAlternatively, you could force no word wrap by declaring some custom css. See CSS white-space property
Hi,
Here is the answer to your question.