PrimeThemes
- Exclusive Author
- Has been a member for 0-1 years
- Microlancer Beta Tester
- Bought between 1 and 9 items
- Sold between 5 000 and 10 000 dollars
89
Purchases
Buyer Rating:
4.43 stars
4.43 average based on 7 ratings.
-
5 Star
685%
-
4 Star
00%
-
3 Star
00%
-
2 Star
00%
-
1 Star
114%
| Created | 21 February 13 |
| Last Update | 5 March 13 |
| Columns | 4+ |
| Compatible Browsers | IE8, IE9, IE10, Firefox, Safari, Opera, Chrome |
| Software Version | WordPress 3.5 |
| Documentation | Well Documented |
| High Resolution | No |
| Layout | Responsive |
| ThemeForest Files Included | HTML Files, CSS Files, JS Files, PHP Files |
| Widget Ready | Yes |
© All Rights Reserved PrimeThemes -
Contact Envato Support


Oups, I didn’t read the last comment. All is all right with wordpress 3.5.1
Hello! Great Theme!
Can i ask you something? How to change color?
Thank you!
(I fix it! Thank you and sorry for your time)
Hello. I´ve downloaded the dummy content file but when I upload it to my site all the pages are blank, so it´s not a great help.
Could you, please, tell me how can I insert a map like the one in your demo site? Can’t find any shortcode in your theme for this.
Thank you.
Hi
The google map is not a shortcode. You just need open google map website – define your address on the map, and copy the iframe code on the box and paste into “text widget” module in page content manager.
hope this help
THanks
OK. Thank you.
I am trying to edit the theme files to allow a Testimonials widget. I am almost there, with the widget showing a list of all testimonials, but I want it to scroll through them, as it would if I had inserted a content module. How can i set up a testimonial widget?
Hi
Paste this code http://pastie.org/pastes/7588345/text – into ’/functions-inc/widget.php’
hope this will works
Thanks!
It didn’t work! I pasted it in the file and it blanked out my site. I had to go in via FTP to undo the changes to make it work again.
The code looks like it should work, but can you verify it will? Is there a specific place I should paste it?
it should work,
paste it after this line
also you need to copy code below into your style.cssadd_filter('widget_text', 'do_shortcode');, try copy the code from here http://pastie.org/7588816.sidebarbox .col_four, .footbarbox .col_four, .sidebarbox .col_three, .footbarbox .col_three, .sidebarbox .col_two, .footbarbox .col_two{ float: none; width: 100%; margin: 0 0 0 0; }thanks!
Took a couple tweaks, but it works. Thanks so much!
When I active the theme I get the following error:
PHP Fatal error: Call to undefined function imagecreatefrompng() in /wp-content/themes/reborn/functions-inc/theme_setup.php on line 981
I am running WP 3.5.1. Other themes seem to work okay. Thanks.
Hi there
It’s the problem from your hosting, this theme need GD library enabled, including JPEG and PNG library inside the GD module. Please contact your hosting provider to enabled all GD feature
Many Thanks!
Thank you for the quick response, “yum install php-gd” fixed the issue!
Hello Thanks very creating a nice and strong template.. I had fun working on it. Now i run into little problem.. but cant fix it. the social networking icons on the top, for a funny reason, last one falling from its line.
how can i fix it ? you can check empiretcs.com
Hi
Please check your input in the theme settings for “top text” ( Harun@empiretcs.co.... ). it missing the closed “a” tag for “Register For Client Area” link
thanks
yeap.. got it .. thanks
Hi.
I purchased today your theme and I like it it very much. I have only one issue…I like to add under the slider on the homepage a page but I have no glue how to manage it. I see only “No content detected!” I like to do it as on your demo page. Could you please give me a hint.
Thanks.
Got it!
Hello
Great theme I must say, but I’ve run into a little problem… When I scale down the browser window, the logo on the left side of the menu jumps up as soon as the edge of the menu meets the edge of the logo. The padding on each side of the text in the menu-buttons is a little too wide (30px both left and right).
Where can I change the padding of the main-menu/navigation? I’m using the “Mighty Slate” color scheme and I can’t figure out wether it’s in the “mighty-slate.css”-file or the normal “style.css” where I can change it. Can you tell me where in the code I can make the menu-buttons narrower?
Thanks in advance
Hi
Did you have test it on “real” devices, instead scale your browser to test the layout? The theme use some logics to manage the top layout (logo and menu).- The menu height, is follow the logo height + paddings (top and bottom)
- when the menu width + logo width exceed the maximum container width, the menu will move into the bottom of logo (it will still use the default height and have width 100%, and each menu button will have same width to filled the menu container)
the logo, base.css line 219#logo{ float: left; margin: 0; padding: 30px 30px; }, and to dynamically style the menu container height, the theme will count your logo image height + padding top and bottom, “functions-inc/theme_functions.php” line 393function _prime_logo_height_print(){ $logoHeight = 136; if( prime_get_option_image_size( get_option(THEME_SHORTNAME.'_logo'), false ) ){ $logoHeight = intval(prime_get_option_image_size( get_option(THEME_SHORTNAME.'_logo'), false ))+60; } return '#main-nav>li>a{height : '.$logoHeight.'px;}'; }see, the +60 on the function above is based on logo stylesheet above.
and when the actual menu width is exceed the maximum container width (in case, user place too many menu items as parent menus) or the menu width and the logo width exceed the maximum container, we use js function to control the menu style, “js/global.js” line 175 – 273
hope this help,
many thanks!