Discussion on Felius - Responsive Multipurpose Template

Discussion on Felius - Responsive Multipurpose Template

By
Cart 266 sales
Well Documented

11Soft does not currently provide support for this item.

33 comments found.

Hi there! I recently bought this template however I can´t do the contact form working… I put the email and did tests but when I fill the email if it is different from the receiver mail never arrived.

Could you help me? Thanks in advanced.

Hi Thanks for purchase.

Unfortunately, your support period has expired. You don’t have a badge “SUPPORTED”

Strange, I checked and everything works. https://prnt.sc/12yp44v https://prnt.sc/12yp7b0 https://prnt.sc/12yp82v

List of probable reasons: 1) Emails come to “spam” 2) The site must be located on the hosting, not on the local server. 3) Hosting must support PHP and send emails using PHP 4) Probably strayed hosting settings 5) Maybe somewhere after editing the template error has occurred, please try to return to original template to check whether it sent emails or not. Config your form step by step with checking errors. 6) Maybe you forgot to connect the necessary js scripts.

Most likely during customization something went wrong.

How to set up your email please read the documentation https://prnt.sc/12yq71w

Helpful Tips

Don’t start from scratch, use an existing page and modify it to learn how it works Quickly find what you’re looking for in this document by using your browser’s “Find in Page” feature, typically Control+F. Trying to locate/replace text, styles or code in themes? “Find in Files” command which is commonly found in any decent text editor which will save you hours of searching Getting an error message, chances are someone else has seen it too, try a google search for a quick fix. Many times plugins are to blame when a site fails, always try disabling any third-party plugins if you encounter an error you can’t solve. Don’t forget to re-explore the live demo for layouts, usage ideas and sample code

Don’t use WYSIWYG editors (DreamWeaver and others) for customizing the template, they put a lot of unnecessary code that can mess up the HTML layout. Use editors, the same as the Sublime text or Notepad ++ or others.

Approximate example how to customize template you can see here – https://www.youtube.com/channel/UCDTEneMIkPtZZW18lKZgIJA

A useful tool for customization – https://developer.chrome.com/devtools

Full terms and conditions of the support you can read here https://themeforest.net/page/item_support_policy

Kind regards

bu tema da veri tabanından çektiğim verilere linkler metin olarak görüntüleniyor böyle bir problemle karsılaşan varsa yardım edebilirler mi acaba

Hello,

Thank you for your purchase.

Sorry, unfortunately, according to Envato’s rules, support for this theme is not provided.

Helpful Tips

Don’t start from scratch, use an existing page and modify it to learn how it works Quickly find what you’re looking for in this document by using your browser’s “Find in Page” feature, typically Control+F. Trying to locate/replace text, styles or code in themes? “Find in Files” command which is commonly found in any decent text editor which will save you hours of searching Getting an error message, chances are someone else has seen it too, try a google search for a quick fix. Many times plugins are to blame when a site fails, always try disabling any third-party plugins if you encounter an error you can’t solve. Don’t forget to re-explore the live demo for layouts, usage ideas and sample code

Don’t use WYSIWYG editors (DreamWeaver and others) for customizing the template, they put a lot of unnecessary code that can mess up the html layout. Use editors, the same as the Sublime text or Notepad ++ or others.

Approximate example how to customize template you can see here – https://www.youtube.com/channel/UCDTEneMIkPtZZW18lKZgIJA

A useful tool for customization – https://developer.chrome.com/devtools

Kind regards

@abcgomel Design and HTML5 code are very good, but ... I have noticed few typos in CSS:
  • ‘mounth’ instead of ‘month’
  • ‘standart-post’ instead of ‘standard-post’
I would argue about using title of the portfolio item twice: http://abcgomel.ru/felius/portfolio-single.php * in the breadcrumbs bar * over the picture

You did the same on the single post template.

I redesigned it by making second occurrence the subtitle.

Currently I cannot show you my modifications because my website is not ready yet, but ... your template is really great!

Thank you for releasing it!

Hello

Thank you. I’m glad that you liked my template.

Template is great but… I couldn´t upload it to wordpress because it´s a HTML template, so how can i upload it?

Hi

Thank you for your purchase.

But this is not WordPress theme. It’s HTML template (cheaper than WP themes and placed in Site Templated category). HTML template can not be used as WP themes for WordPress you need WP Theme. WP version is here http://themeforest.net/item/-felius-responsive-multipurpose-wordpress-theme/5315388

Thanks

The layout is really easy to customize. One thing I haven’t been able to figure out is: How to use one element, say, the accordion twice in a line – the can’t be used twice and I’ve been struggling with trying to get only two rows of them in one line.

p.s.: I wanted to rate the layout with five stars, but I don’t see the option anywhere to do that…?

Thank you for purchase.

If you need 2 accordions :

The file main.js change this

//ACCORDION----------—- $(document).ready(function() { $(”#accordion”).accordion({ autoHeight: false, }); });

To this

//ACCORDION----------—- $(document).ready(function() { $(”.accordion”).accordion({ autoHeight: false, }); });

( call accordion not by id, but by class)

Change HTML this

<div id="accordion"> <h3> <a href="#"> Lorem ipsum </a> </h3> <div> <p> Nunc ipsum risus, bibendum quis tincidunt a, tempor quis nunc. Aenean in odio in sapien porttitor sodales. </p> </div> <h3> <a href="#"> Vestilum pulvinar </a> </h3> <div> <p> Nunc ipsum risus, bibendum quis tincidunt a, tempor quis nunc. Aenean in odio in sapien porttitor sodales. </p> </div> <h3> <a href="#"> Donec sedin </a> </h3> <div> <p> Nunc ipsum risus, bibendum quis tincidunt a, tempor quis nunc. Aenean in odio in sapien porttitor sodales. </p> </div> </div>

To this

<div class="accordion"> <h3> <a href="#"> Lorem ipsum </a> </h3> <div> <p> Nunc ipsum risus, bibendum quis tincidunt a, tempor quis nunc. Aenean in odio in sapien porttitor sodales. </p> </div> <h3> <a href="#"> Vestilum pulvinar </a> </h3> <div> <p> Nunc ipsum risus, bibendum quis tincidunt a, tempor quis nunc. Aenean in odio in sapien porttitor sodales. </p> </div> <h3> <a href="#"> Donec sedin </a> </h3> <div> <p> Nunc ipsum risus, bibendum quis tincidunt a, tempor quis nunc. Aenean in odio in sapien porttitor sodales. </p> </div> </div> (Change id to class )

This will allow use many accordions on one page

If you need to place 2 elements in 1 row in a content-container-white

HTML code: <div class="row"> <div class="in-eight in-columns">      <! - HERE place CODE of YOUR ACCORDION -> </div> <div class="in-eight in-columns">       <! - HERE place CODE of YOUR ACCORDION -> </div> </div> You can rate this template in your downloads (http://themeforest.net/downloads) there is a point “rate this item”

Thanks

Hello,

I purchased the theme and want to commend your efforts, very brilliant theme. However, I’m having problems as it is not mobile phone responsive. The entire navigation appears brilliantly on ipads but not mobile phones. All that appears on mobile phones is the home page that cuts out all the navigation links. Please advise?

Tony

Hello, Tony

Thank you for purchase. Strange, I just checked all. If you still have the problem , please send me screenshots, for more details. Do you have this problem in a live demo (http://abcgomel.ru/felius/)?

Thanks

Do you have a Typo3 version for the template?

Unfortunately, i don’t have this version.

mail chimp newsletter not working. keeps asking to enter a valid email address, which i did.

to be sure, it doesn’t work when enabled on contact us page. Must be a conflict with the contact form and newsletter sign up

You havent buyer label. Support provided only for buyers. Maybe you bought WP theme?

Slider navigation. Can the navigation thumbnail be distributed evenly to the width of the navigation? No gray space?

4 boxes below slider, can that be 3 column by 2 row?

Can I make the logo text align to bottom of the square box and keep it consistent with all devices?

Can I change the height of the slider without breaking responsiveness?

Can the clients logo area become sliders of logo

  • all questions based on homepage 1 **

1) Pictures are installed separately (not automatically generated ), if needed, you can turn off all them . Number of images depends on the width.

5) You can use built-in template slider or carousel.

Back to my number 2 question. Instead of 3 column by 2 rows, is it possible to have 6 column 1 row box?

Yes, it is possible. If you buy a template and you need 6 columns in one line I will send you necessary css code

Greetings, You’ve created a nice template, good job! It’s perfect for my site&blog as a freelance. :)

Thanks

Hello

I’m having a little problem using search? It doesn’t seems to work when i try to search something.Am i missing something??

Thanks

Hello

Thank you for purchase. I sent you email

Thanks

Hi,

In services page, how can i change the images in box icons (Valid HTML,Cross Browser Compatible,Touch Support etc)??

http://abcgomel.ru/felius/services.php

Hi. Thank you for your purchase.

1. For icons used Font Awesome. If you want to change icon, you just need to change name of the class. For example, to change the icon “file” to icon “book”, you need to change to

More details you can read here http://fortawesome.github.io/Font-Awesome/3.2.1/icons/ and here http://fortawesome.github.io/Font-Awesome/3.2.1/examples/

2. It is necessary value for normal work Font Awesome

How can i replace those icon with my own??

You can insert any of your icon (image) by simply adding code, example <img src=”images/icon-comp.png” alt=”icon-comp”>

Hello, great work!!

Aithough, i’m having a little problem..it seems that the logo area (before footer) isn’t responsive. When i try to resize my window, i’m missing some of my logos depending on the scale of resizing.

cheers

Helo. Thank you for your purchase. Do you mean that when you change size of the screen some clients logo does not show? This can be disabled. If you need to show all clients logo when changing the screen, send me email and I’ll write you how to do it. Thanks

Hi, ¿Is posible to display all logo clients into a page?

Hi. Yes, it’s posible.

Great Template! Just having a little trouble with the Contact page, read through the discussion above regarding that a web server is needed for the php mailer to function. Tried that, and everything else too – aspx page conversion, html page, aspx page with server side buttons for submitting the form – nothing works. My “Send Mail” button just won’t fire. It would be great if you could help. Thanks.

Thank you for your purchase. For work Contact page you need to setup send.php (write your email) more in documentation. Also, your hosting must support php. A similar problem was with another man with a hosting. Maybe emails go to the spam. Thanks

Realy nice theme! Good Job

Thanks :)

Need to change the Paragraph color and size, how can i do this?

Nice Theme by the way.

BUT OF COURSE: body { font-size: 13px; line-height: 18px; color: #4B4B4B;

silly question, i was tired .

i cant seem to be able to make use of the ‘latest work slider’. i have already activated it on the options. i don’t know where can i upload the images to. please advise, thanks

Thank you for purchase. Pictures for ‘latest work’ are located in folder images / content / (example images/content/port2-1.jpg and a large preview images/content/port-big-1.jpg) Thanks.

how can i set it to the ‘latest work slider’?

You can replace images in blocks “LATEST POSTS ITEM”

good night

I wonder how do I duplicate the countryside “project-details” to the other figures.

graciously

Wesley

Hi. Please write in more detail about what you need on my email. Thanks

Hi, 1)HTML 2)WP:IS THIS VERSION EASY TO EDITING? 3)PSD:JUST A PHOTOSHOP DOCUMENT? 4)WHAT IS THE DIFFERENCE BETWEEN $15 AND $750,I’M CONFUSED.

THANK YOU FOR YOUR FAST REPLY.

Hi

“1) HTML 2) WP: IS THIS VERSION EASY TO EDITING?” Yes, they are light enough for customization.

“3) PSD: JUST A PHOTOSHOP DOCUMENT?” yes

“4) WHAT IS THE DIFFERENCE BETWEEN $ 15 AND $ 750, I’M CONFUSED.” You Can read about this here http://themeforest.net/licenses

Thanks

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey