ThemeForest

Reborn - Premium Multipurpose WP Theme

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

Oups, I didn’t read the last comment. All is all right with wordpress 3.5.1

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

Hello! Great Theme!
Can i ask you something? How to change color?

Thank you!

(I fix it! Thank you and sorry for your time)

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

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.

PrimeThemes

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

Default-user

OK. Thank you.

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

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?

PrimeThemes

Hi

Paste this code http://pastie.org/pastes/7588345/text – into ’/functions-inc/widget.php’

hope this will works :)

Thanks!

Default-user

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?

PrimeThemes

it should work,

paste it after this line add_filter('widget_text', 'do_shortcode'); , try copy the code from here http://pastie.org/7588816

also you need to copy code below into your style.css
.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! :)

Default-user

Took a couple tweaks, but it works. Thanks so much!

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

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.

PrimeThemes

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!

Default-user
cpelon Purchased

Thank you for the quick response, “yum install php-gd” fixed the issue!

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

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

PrimeThemes

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

Default-user
plabanm Purchased

yeap.. got it .. thanks

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

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.

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

Got it!

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

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

PrimeThemes

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 393
function _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! :)

by
by
by
by
by