Forum Replies Created

Viewing 30 posts - 121 through 150 (of 826 total)
  • Author
    Posts
  • in reply to: enlarged logo in internet explorer #129916

    Hi,

    I see no difference between

    IE http://i.imgur.com/GP9vO4C.png

    and

    Chrome http://i.imgur.com/wVqvypW.png

    This is the styling used on the Home button

    .main_menu ul:first-child > li > a {
    display: block;
    text-decoration: none;
    padding: 0 13px;
    font-weight: normal;
    font-size: 12px;
    font-weight: 600;
    font-size: 13px;
    }

    If you want to create some styling specific to IE simply add the css that you want only IE to render in the empty line of the block below. Then you can add this block to header.php , just find the line </head> in the header.php file, and paste the block below above it.

    <!--[if IE]><!-->
    <style type="text/css">

    /* add your IE only css above this line */
    </style>
    <!--<![endif]-->

    Thanks,

    Nick

    in reply to: left Side bar excess free space #126677

    Hi,

    You can link the checkbox, but that would require some custom coding that I think is outside the scope of the support team.

    Thanks,

    Nick

    in reply to: DatePicker translation #133371

    Hi,

    Please look on lines 234 and 265-6 of /framework/php/class-form-generator.php

    As for the Prev and Next , could you show the page on the theme demo or your website, specifically where they are found?

    Thanks,

    Nick

    in reply to: Change Header Font #125031

    Hi,

    There is some kind of an issue with this font. There is a way to get around the problem explained here http://stackoverflow.com/a/16227807/1245478 … Please read the original question on the page as well.

    This issue is also discussed in depth here https://code.google.com/p/googlefontdirectory/issues/detail?id=152

    Thanks,

    Nick

    in reply to: Changing menu layout #132731

    Glad that Peter got you back on track.

    Enjoy the theme!

    Thanks,

    Nick

    in reply to: Disappearing Sidebars #133365

    Hi,

    I am unable to replicate this on my install. What browser do you use on what operating system when this happens? Is there a chance you can do a screen recording when this takes place?

    Thanks,

    Nick

    in reply to: Frontpage widget remove white space #133364

    Hi,

    That should do the trick on all pages

    .sidebar .widget {
    margin-bottom: 10px !important;
    padding: 10px 0 10px 0 !important;
    }

    You can lower the 10px , but there is no need to go into negative numbers since, 0px in all 3 locations in the code above will do the trick.

    Thanks,

    Nick

    in reply to: Entypo Icons Not Displaying in Firefox #133360

    Hi,

    If you go to fontello.com , can you see any of the icons with firefox? If you can’t , please uninstall and then reinstall firefox.

    Thanks,

    Nick

    Hi,

    Glad that you were able to find the solution.

    Enjoy the theme!

    Thanks,

    Nick

    in reply to: Sub menu size is not unified #133296

    Hi,

    Please update to the latest version of the theme.

    Last weekend, WordPress core had a major update to 3.6, and one of the 400+ changes in the new version was a rewrite of the way Appearance > Menus … functions and looks. The update should handle this issue and you can download it from themeforest.net . Simply use ftp to upload the update. Just be aware that it will rewrite every theme file, so if you made changes to the templates themselves, make sure to have a backup.

    Thank,

    Nick

    in reply to: How to add captions to gallery thumbs #131697

    Hi,

    From what I see, your text captions are identical to the tooltips. So you want the text to show up static under each image, and then to have the identical text popup in a tooltip on hover on top of the image?

    Please try changing the code you pasted above

    $thumbs .= " <a href='".$link[0]."' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /><span class='avia-gallery-caption>{$caption}</span</a>";

    to look like

    $thumbs .= " <a href='".$link[0]."' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /><br /><span class='avia-gallery-caption>{$caption}</span</a>";

    Thanks,

    Nick

    in reply to: custom image url in slide? #132930

    Hi,

    I think thats beyond the scope of the support forum since it is possible but would require some kind of a custom plugin similar to a CDN upload plugin in functionality.

    Thanks,

    NIck

    in reply to: form integration #132252

    Hi,

    I am having trouble replicating this issue. What version of the theme are you using?

    Thanks,

    Nick

    in reply to: Loosing icons in default editor and text block #132925

    Hi,

    Could you include a screen capture of this issue so we can see how it looks for you.

    Thanks,

    Nick

    in reply to: Home link at the top menu #132912

    Hi,

    You can go to Appearance > Menu and remove the Home from the menu.

    Thanks,

    Nick

    in reply to: Gallery thumb and caption center alignment. #132111

    Hi,

    1) I see the top one is centered perfectly. and so is the second one. You can use the code below to reset the margin

    div .av_two_third {
    margin-left: 0px !Important;
    }

    2) I don’t see any caption to the right, all are above. The ones that show as text and not tooltips i think i provided you code in your previous post as to how to not display them.

    3) I think such a customization is beyond the scope of the support forum since it would require a significant time investment in recoding the tooltips functionality.

    Thanks,

    Nick

    in reply to: Comments section not showing up #131770

    Hi,

    Now you should check what you did and do it again, because this works 110%.

    These are lines 25 – 27 of single-portfolio.php

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'portfolio-single' );
    ?>

    Delete all three of the above lines and in their place paste this

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'portfolio-single' );
    comments_template( '/includes/comments.php');
    ?>

    Thanks,

    Nick

    in reply to: How to add captions to gallery thumbs #131693

    Hi,

    This code will remove the captions that appear on the sides

    #top .visible-caption {
    display: none;
    }

    You also need to create some rules about types of images that get uploaded. For example , never upload images that are less than 300px wide. So even if they are portraits, they need to be at least 300px wide and if bigger, they should get resized lower by the theme. You can change the setting using http://wordpress.org/plugins/simple-image-sizes/ this plugin in Settings > Media. Set width at 300px , no crop and set height at 9999. And as long as you upload image 300px and wider, you will be ok.

    Thanks,

    Nick

    in reply to: How can I Insert an Advanced Layer Slider Inside a Tab? #129712

    Hi,

    goo.gl prevents the link from being indexed since it is hidden within goo.gl, so if someone searches for the domain , it will not be found. Analytics of course could find it.

    I checked my email, and see nothing referencing this post.

    Thanks,

    Nick

    in reply to: Removing of image-slideshow navigation icons #130906

    Hi,

    The code works fine. I just tested it on your site as I have before giving to you. The problem is that the code I gave you is not found on your website, thus the buttons remain where they are as opposed to being no longer there once the code I provided is actually inserted into either Quick CSS or /css/custom.css . Here is the copy of it this time ran with a spelling checker, lol

    #top .ls-nav-prev, #top .ls-nav-next {
    display:none !important;
    visibility:none !important;
    }
    .ls-bottom-nav-wrapper {
    display: none;
    }

    Tested here: http://www.col323webdesign.com/projekt61/

    and tested here

    http://www.aarhustolkeservice.dk/

    Browser: Google Chrome

    Please leave the code in so we can see it.

    Thanks,

    Nick

    in reply to: slider 2D distortation in browser #132271

    Hi,

    It was the speed of the slider, I am willing to bet on it.

    Nick

    in reply to: enlarged logo in internet explorer #129913

    Hi dkowalewski,

    I only see a default WordPress theme.

    I look through IE 9 and IE10 right now and looks fine to me, nothing horrible here. Are you sure your IE itself isnt buggy (well no more than normally that is)

    Thanks,

    Nick

    in reply to: Enfold tablles #130436

    Hi,

    On this page http://livedealer.org/dev/live-casino-games/live-blackjack/ and other pages like that, this css will fix the thumbnails , so all rows of thumbnails have same height. http://www.clipular.com/c?13089094=roSIXnMA2CWAcp_KfQUc6rwo5pU&f=.png

    h3.grid-entry-title {
    height: 40px;
    }

    Sorry , I still don’t see it. What page is it on? http://www.clipular.com/c?13089097=P9mS7j6EYtydza8Nu5DzxRi0VKw&f=.png

    ….oh the menu. It doesn’t look that way to me, but it overflows on the left side.

    Here is some css to take care of that

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    #header li:hover .avia_mega_div {
    width: 760px;
    right: -300px !important;
    }}

    Thanks,

    Nick

    in reply to: Home page buttons #131726

    Hi,

    That main image on your homepage, you can compress it a lot more without losing quality. Please try this http://jpeg-optimizer.com/ at 65 compression, and turn off size change. Its quite good.

    This css will do the trick, its targeted only for the home page

    #top.home .avia_image.avia-align-center {
    width: 270px;
    }

    `

    Thanks,

    Nick

    in reply to: How to change font size for the entire theme? #130839

    Hi,

    Here is the snapshot of the page in question, http://www.clipular.com/c?13090040=Ny7LUHp01XCDd21TqFYCMjfLEEs&f=.png

    It’s the third page on the Enfold admin vertical menu.


    To control the font size you just need the very basic of basic css. However I will forward your request to Kriesi

    body {
    font: 15px/1.65em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #444;
    }

    then drop it into Quick CSS on bottom of Enfold > (Theme Options) > Styling Layout … text are on bottom of the page… or into /css/custom.css


    You can suggest anything you want on this thread which Kriesi has been using to make updates https://kriesi.at/support/topic/enfold-feature-requests

    However if you want to do it yourself, you can always use Google Chrome dev tools, which are built into the browser to easily locate any css you want , then copy and paste it into Quick CSS , takes seconds and no need to know any coding.

    Thanks,

    Nick

    in reply to: Styling several elements, login and my account #132230

    Hi,

    1. Please add this to /css/custom.css OR to Quick CSS

    .flex_column .widget .widgettitle, .content .widget .widgettitle {
    margin-bottom: 1em;
    }
    #top .widget ul {
    list-style-type: none;
    list-style-position: outside;
    margin-left: 7px;
    }

    2. Here is the css that is used on the blue button on the page you linked to

    .avia-button-wrap {
    display: inline-block;
    }

    #top .main_color .avia-color-theme-color {
    color: red; /*color of button text*/
    }

    body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);/*text shadow rgb, 0.1 transparent*/
    }

    .main_color .avia-color-theme-color{
    background-color: #2D5C88; /*main button background color*/
    border-color: #2D5C88;/*main button border color*/
    }

    .avia-button.avia-size-large { /*size, can change large to medium or small*/
    padding: 13px 30px;
    font-size: 14px;
    min-width: 127px;
    }
    .avia-button.avia-position-left {/*position, can change left to right or center*/
    float: left;
    display: block;
    }

    body div .avia-button {
    border-radius: 3px;
    background-image: url("../images/layout/bg-button.png");
    background-repeat: repeat-x;
    background-position: 0 0;
    padding: 10px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    border-style: solid;
    border-width: 1px;
    margin: 3px 0;
    line-height: 1.2em;
    position: relative;
    font-weight: 600;
    text-align: center;
    max-width: 100%;
    }

    4) It’s a text font, so you would write it.( ♥ <— heart ) so just copy whatever you need to use by selecting it on a page and copy the glyph itself and paste it as you would paste any letter or word , and then style it with font size and color, etc..

    Thanks,

    Nick

    in reply to: How to add captions to gallery thumbs #131691

    Hi,

    There are two settings in the gallery , one asks if you want to give your gallery images a specific size, and another asks if you want you images to automatically adjust to the width of the column. Have you tried switching this setting (it is in same location prior to where you begin adding the images to the gallery )

    Thanks,

    Nick

    in reply to: Bloposts don't show headers correctly anymore #130589

    Hi,

    I stuffed Devin’s example with some extra goodies, and also two letters of the class name weren’t showing up, so please try it now.

    If you need to find a freelance developer, there are a number of reputable locations. You mentioned that something is cracked on your installation? It’s not the theme I hope, lol.

    Thanks,

    Nick

    in reply to: slider 2D distortation in browser #132266

    Hi,

    I looked at your slider. You got some nice stuff going on, but I think its a bit too fast. If you shrink the screen down to a size of a tablet in portrait view and the slider will shrink accordingly, you will see that everything starts to fall into place though there are a few pauses and some choppiness especially when you make an image quickly zoom up into the screen. Also, everything in your slider is H3 , is that how you wanted it? h3 with the same class for all objects. Can you try to make everything just a bit smoother if possible since i think at those screen sizes no every graphics card can handle this.

    Thanks,

    Nick

    in reply to: left Side bar excess free space #126675

    Hi,

    Could you please post screen shots along with url of pages when you see something weird, since there are too many ways to interpret that for us to begin working to unravel this. I think the issue is either with outside css being used or some general slider setting having a commas or a % instead of pixels…

    Thanks,

    Nick

Viewing 30 posts - 121 through 150 (of 826 total)