Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #204530

    Hi Kriesi Team !

    Please help me ! I usually customize theme a little, but with this theme is impossible !
    I want to change the logo dimensions and the main img dimensions in the ajax slideshow but I’m not able to find where I have to modify.
    Every time I look at the code with firebug or chrome I see the damned element.style class. I really hate it !
    I search their value in the pages ( php, js, css ) but I can’t find anything and I don’t know what kind of code I have to add.
    There are a lot of css files but no one has useful parameters.

    Sorry but this theme isn’t customization friendly. I inserted a logo under default measures and it was minimized.

    I’m sorry I’m nervous, but I’m working on it for hour without results. I just wanna change some height and width and it seems impossible.
    Can you help me please ? I have to understand the logic under this theme because it’s one of the best in theme forest.
    I’m a little upset about the customization… XD

    Please help !

    Greetings, have a nice day

    CN

    #204544

    Hi charmenoir!

    With this theme and in more of the newer premium themes getting released these days there is a lot larger of a learning curve associated with modifying the theme files because of programming is more advanced. Its a trend you will start to see more of as WordPress is purposely trying to push forward and grow into using more modern code.

    You should first create a child theme and keep your changes to that child: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Then you can create copies of and modify the advanced layout builder elements in your child theme: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    For the logo you can use a bit of css to change the size:

    
    #header_main .container, .main_menu ul:first-child > li a, .logo img, .logo a {
    height: 188px !important;
    line-height: 188px !important;
    max-height: none !important;
    }
    #top .logo, #top .logo img {
        max-width: 100% !important;
    }

    You’ll want to add that to a desktop only media query if you are using a responsive layout so that it doesn’t effect tablet and mobile views. In the css folder the custom.css file has a sample of a desktop only and mobile only media query you can use.

    Cheers!
    Devin

    #204562

    Hi Devin,

    thank you very much for your help.
    I’m watching in the avia template builder shortcodes: I’m not well in php, I understand this: if I don’t know php I can’t change anything , right ?
    I usually work on css but here there the dimensions seems to be created through php operations…
    I think I can’t modify anything for now.

    I watched in portfolio shortcode but It’s impossible for me.

    #204607

    No, actually you can change it with css if all you want to do is change the widths of the 2 containers:

    
    .portfolio-preview-image {
      width: 66.6%;
    }
    .portfolio-preview-content {
      width: 33.4%;
      padding: 63px 30px 30px 30px;
    }
    
    #206345

    Hi ! Thank you I tried it.
    With the portfolio no problem.
    With the logo there are too many consequences on every changes I made so in the end I prefer to not make changes.

    Thank you for your help. You were very kind

    Have a nice day

    Fede

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Impossible to customize !’ is closed to new replies.