ThemeForest

MetroStyle Responsive All Purpose Wordpress Theme

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
hjmt Purchased

Hi, Great theme. I have an issue, I have 12 menu options across the top. Some of the menu names are longish and when you reduce screen size the text ends up outside the orange menu block.

Is there some custom css I can use to reduce the size of the font in the Menu’s?

Cheers

mopc76

Hi,

yes, it’s possible. If you are familiar with CSS you can take a look at css/responsive.css file and see the screen sizes for media queries, then add custom CSS into “Custom CSS” field inder “Theme Options – Extra code blocks”. If you are not familiar with CSS you can tell me your website URL and I’ll advise you the CSS snippet to adjust the font size.

Default-user
hjmt Purchased

Hi Mopc76 the site is called obd.net.au

mopc76

Hi,

here is the custom CSS (probably the size is too small, but bigger doesn’t fit)
@media only screen and (min-width: 980px) and (max-width: 1259px) {
    .primary-menu > li {
        font-size:10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 979px) {
    .primary-menu > li {
        font-size:9px;
    }
}
  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
sabbarr Purchased

My Homepage was designed with 3x size boxes. However, they all changed back to 9x. I know that you have to have 3 boxes of 3x size to fill the entire with of the page. No matter what I do they revert back to 9x. Is there anyone else with this problems? Could you help me find a solution? Thanks

mopc76

Hi,

please, write us via contact form ( http://themeforest.net/user/mopc76 ) provide us your website URL and temporary access to WP-admin, we will try to figure out the problem.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hy there. I Purchased your theme. Its great. I have on frontpage a slider with 2 pictures and one Youtube file, so there are 3 blocks. The problem is when I access the website through Iphone4, the slider is blocking (the arrows are not working) when I get to the Youtube block. Please can u help????

mopc76
mopc76 Author

Hi,

could you please provide your website URL.

Default-user

Hi there. The URL is: http://www.ciresarii.ro The second problem I met is that on IE when I go over my submenu and below the submenu is a Youtube File the submenu does not appear! I’ll wait for your response ! Thank you very much. You are a grat team!

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
dbrendina Purchased

Hello,

Is there a way to overlay icons on the boxes in the navigation menu?

Best,

DBR

mopc76
mopc76 Author

Hi,

there is no such option in the theme, but you can try to do it by adding custom CSS (if you are familiar with CSS). It’s similiar to colorizing the menu ( see http://support.olevmedia.com/forums/topic/how-to-colorize-primary-menu-items-separately/ ) and you can just try to use such a code:
#menu-item-850 {
  background-image: url(path_to_icon);
  background-position: center center;
}
  • Bought between 50 and 99 items
  • Has been a member for 3-4 years
  • United States

Hi, Is is possible to add menu descriptions (under the title) to the main menu items?

mopc76
mopc76 Author

Hi,

no, there is no such option.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
Carluf Purchased

Hi, 1) I would like to add a search box at the top right of the website. How can I do that? 2) I have problems with portfolio links not working. When I click on it, it doesn’t redirect me to the proper page. http://www.bnrbeurs.nl/photos/ . I am using W3 Total Cache and permalinks. I tried to reset the permalinks but it doesn’t seem to fix the problem (don’t know if it might influence). Do you know how to fix this? Thanks!

mopc76
mopc76 Author

Hi,

1. you need to open file header.php, add some HTML markup (div with right floating) into
<div class="headline block-full">
   ...
</div>
block, and display the form with <?php get_search_form( $echo ); ?>

2. Will it work if you reset the cache or if you deactivate W3 Total Cache?

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
pavlos03 Purchased

Hello,

I have enabled the homepage slider in the theme options, but although I see it on the website, it’s not responding either to click right, nor it works automatically when I set autoslide.

I use IE10, chrome, opera, everything. it works on your preview just fine, but not here.

mopc76
mopc76 Author

Hi,

could you please provide your website URL?

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
deb2fast Purchased

Hi how do I edt the credit information in the footer.. “© Copyright – MetroStyle Theme Demo Wordpress Theme. How to Purchase?”

I also want to remove this text up on the page. “How to Purchase? MetroStyle WordPress Theme / Your Site Tagline Here. T: 800 983-41-24, P.O. Box 515, Pinney’s Beach, Charlestown.”

I looked through footer.php but couldn’t find anything. I apreciite your help with this. Thanks.

mopc76
mopc76 Author

Hi,

these strings can be set under “Theme Options – General settings – Site intro text” and ”... – Sub-footer text line”.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

My blog is GadgetXpert.co.uk – and I can’t seem to get the thumbnails the same size, they’re all different sizes….

mopc76
mopc76 Author

Hi,

the minimal required size for the thumbnails is 456×300. Also, if you applied the theme to the wordpress blog with existing posts you need to regenerate thumbnails with “regenerate thumbnails” plugin.

Default-user

Yeah, didn’t work – seems that the images only go funny for my site in the larger pc responsive – I really need to get rid of the featured images, but that custom css didn’t work!

mopc76
Sorry, I gave you a bit incorrect code, the correct one is
.post-pic {
  display:none !important;
}
Default-user

Works great – do u also have a custom css to make the footer credit white???tthanks

mopc76

Hi,

actually footer credit color could be set under “Theme Options – Styling – Footer – Footer side text color”. But if you need to colorize it via CSS:
.sub-footer {
  color:#FFFFFF;
}
  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

And I’ve tried resizing the thumbnails, but doesn’t work….

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

If I can’t get them the same sizes, I need for the featured images to be removed – and not by deleting my featured images – by editing code or custom css!

mopc76
mopc76 Author

the minimal required size for the thumbnails is 456×300. Also, if you applied the theme to the wordpress blog with existing posts you need to regenerate thumbnails with “regenerate thumbnails” plugin.

if you want to hide them by custom css, try this code
.post-pic {
  display:none;
}
  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Hi,

Can you tell me how I remove that silly browser upgrade overlay. You do realise that if the theme isn’t up to date, and an IE user uses the website which goes into compatibility mode they get that stupid message and unable to browse the site. That’s awful coding – stopping the user dead.

mopc76

Hi,

IE users with versions 8+ will never see this “upgrade overlay” because there is an instruction for IE browser in the theme code to deactivate forcibly compatibility mode.

If you still want to remove this overlay – it’s up to you: open file header.php, remove block at line 32
<!--[if lt IE 8]>
    <style>
    ...
    </style>
<![endif]-->
then, remove line 61
<!--[if lt IE 8]><p class="chromeframe">...</p><![endif]-->
  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

So my last questions are – which I’ll need custom CSS for:

To get the date displayed like on the lite blog, because I’m not fussed on the huge tiles with the date on in standard blog.

And my copyright text is grey, how can I make it white…

mopc76

Hi,

unfortuantely there is no easy way (just with custom css snippet) make the date for standard blog like in the lite blog.

As for the copyright text I’ve answered you under the previous message.

by
by
by
by
by