Viewing 30 results - 140,941 through 140,970 (of 142,508 total)
  • Author
    Search Results
  • #127314

    You can include a secondary option for retina with something from: http://css-tricks.com/snippets/css/retina-display-media-query/

    I’ve edited your previous posts and will mark this resolved for now. The css tricks retina trick is basically just duplicating what you have now for the background image except you will use a higher res image and it will only take effect on retina.

    eg:

    @media
    (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {
    /* Retina-specific stuff here */
    #top .social_bookmarks_tumblr a {
    background: url(.......uploads/custom/apple-retina.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a:hover {
    color:#fff;
    background: url(........uploads/custom/apple-hover-retina.png) no-repeat center;
    }
    }

    #129641

    In reply to: child theme modifying

    Hi stingray2009,

    If you’ll be modifying the framework files its best to do it on the parent theme. Otherwise you need to duplicate the function that includes the file so that it replaces the one in the parent and then include it in the child. Either way you’ll always have to update that file manually whenever there is a theme update since it doesn’t build on top of the parent.

    Regards,

    Devin

    #129386

    Hi Dayna,,

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #header_meta {
    background: #333;
    }

    Change the color code to whatever color you want it to be.

    @ Crippy – To change its opacity, you would just use a RGBA color instead and have the transparency to whatever you wanted. See: http://www.css3.info/preview/rgba/

    Regards,

    Devin

    #129380

    Hi,

    I am gonna assume the size of your image that you want is 950width and 150 height. So change as appropriate


    Image Size on Main Blog Page.

    Ok . The instructions above that you followed would create the image size you want, but on the main blog page ,

    just need to follow one more step http://i.imgur.com/JvxGDYc.png

    Here you can see dimensions on the main blog page http://www.clipular.com/c?10253053=zR5ebPSB_qN2exkurXg8R_3Noxw&f=.png


    Instructions for Individual Blog Posts (image size)

    On the individual blog pages, i think the image size is set 180×180, correct? So you would need to go to Media > Settings and find where it says 180×180 and change it to 950×150. And looking on that page I see there is Square Size which is 180×180.

    1. Now change it to look like this http://www.clipular.com/c?10254053=SGwlS2E0lQX-vEP-h2NvIAcZ2xE&f=.png

    2. Then you need to regenerate like this: http://www.clipular.com/c?10182062=f2f4ilB119SKyxouKSLoeM_OaNw&f=.png

    3. Save (below regenerate button)

    4.You must add this css to /css/customl.css or it wont work.

    #top.single-post .small-preview {
    width:950px;
    height:150px;
    }
    #top .fullsize .template-blog .blog-meta {
    width:950px;
    }
    #top .fullsize .template-blog .post .entry-content,#top .fullsize .template-blog .post-title,#top .fullsize .template-blog .post .entry-content>* {
    max-width: 900px;
    }

    (if regenerate doesn’t work, then just delete the blog post image, and upload it again and it will be of the correct size. it means you don’t have enough memory and will have to re-upload the blog post images one by one. However it works almost always).

    Here is how it looks for me now resized: http://www.clipular.com/c?10247086=2szwOylwNrX5oZgEMqHfLbowhtQ&f=.png

    Thanks,

    Nick

    #26236

    Topic: CSS Conflict

    in forum Enfold
    stunna42
    Participant

    Hello – This question is related to https://kriesi.at/support/topic/theme-css-conflict?replies=9#post-125022.

    Please see page: http://thecaloriemythbook.com/?page_id=2330

    You will note a bunch of unwanted white space above the form. When the form is on a plain HTML page such as http://thesmarterscienceofslim.com/testor.html this white space isn’t present. How can we get rid of this white space on *just* http://thecaloriemythbook.com/?page_id=2330 and any other individual page on which we need to place one if these forms?

    Thank you.

    #26232

    Topic: Layerslider Error

    in forum Enfold
    a123john
    Participant

    Hi, im trying to create a layerslider

    https://www.intelligence.com.sg/pages/blank/slidertest/

    The word STYLE , though in the admin page is supposed to be below the word development. However the word Style ( Layer 33 ) stays on top and all other layers after 33 does not work. Is this a bug or is it that i’ve added too many layers ?

    Hi soulfabrics,

    That is actually a pretty tall order. The theme uses media queries at a few different pixel widths to change the css for certain elements. What you would need to do is add the margin: 0, padding: 0 declarations to the needed selectors for each responsive adjustment with new media queries.

    You can see an example in the custom.css file where we’ve added the basics for tablets, desktop and mobile.

    So for each case where you don’t like the margin, you would adjust the margin or padding or container for large desktop size, regular view, tablets, mobile and possible small mobile (under 350 or so pixel width) depending on how the margins are inherited.

    If you aren’t comfortable with that level of css customization I would recommend looking into a freelance developer and having all the changes added to a child theme style or at the very least the custom.css file.

    Regards,

    Devin

    #26226
    ace2296
    Participant

    Go here

    https://www.bluesquidmedia.com/local-marketing/sign-up/

    This is a layout without the header and the top orange and red ray background is supposed to be fixed. For me (Chrome) it isn’t fixed and it glitches and shows the black background.

    Any thoughts?

    #26217
    formateins
    Participant

    Hey Guys,

    as I thought, my customer wants some modification to the main layer of the avia navigation. You may take a look at http://www.pcamobile.de/startseite/. You’ll notive the white right aligned area within the header… yeah, the menu should go there. *yikes*

    I’ve figured out everything so far (reverse css engineering, doh), but there are a few difficulties.

    1. The header size is set via jQuery (avia.js > avia_header_size) depending on the scroll event.

    2. Repositioning with top:xx won’t do it…

    Wait, I think I got an idea… if I would change the height of the top css too… gonna try it now…

    Yep, works. Sometimes you have to start a thread to get the idea… lol… I’ll post this anyways.

    So if someone likes to modify the avia menu position, you should add this css:

    /* Main Navigation Mods */

    .main_menu {height:25px; top:92px; right:-30px;}

    .main_menu ul li a {height: auto !important; line-height: 20px !important;}

    .main_menu ul:first-child > li > a {padding:0 7px; font-size:11px;}

    #header .avia_mega_div {margin: -1px 0 0 0; padding: 1px 0 0;}

    If you like the dynamic height of the header, you’ll have to mess with the avia.js located in js/ folder. I reposition the whole menu using a distance from top on .main_menu wrapper. So you have to add this to the function avia_header_size(). I’ve added top_height = $(‘.main_menu’).height() to get the current height of the header, set a static value topH for both full and half size. Then simply add it to the css class: $(‘.main_menu’).css({top: topH + ‘px’});

    Don’t get it? Nevermind… it looks crappy anyways… :-/

    #26215
    Mkieling
    Participant

    Upon migrating, the following error started to appear on top of all pages: Warning: Missing argument 1 for get_post(), called in /home/storage/d/5b/8e/step111/public_html/sitept/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /home/storage/d/5b/8e/step111/public_html/sitept/wp-includes/post.php on line 380

    Also, this same error appears on the admin of WordPress. And the result is that I can’t edit posts, pages, widgets. In short, the dashboard is blocked.

    Can anybody help, please?

    #129447

    Ich habe beim vorherigen Code nicht an das Sidebar widget gedacht sondern an das “Warenkorb” Icon oben rechts, welches den Warenkorbinhalt nach einem Klick anzeigt.

    Für das Sidebar Widget verwendet

    #top div .widget_shopping_cart .button {
    width: 100%;
    display: block;
    }

    #top div .widget_shopping_cart .button.checkout {
    margin-top: 10px;
    }

    #127313

    Devin,

    Thank you for your help. I have one more question and problem.

    1. I actually had to do this. If I only used 2 entires then I end up with a weird distortion in my Apple icon. So I added the last line from the previous code. To result as this:

    #top .social_bookmarks_tumblr a {
    background: url(.......uploads/custom/apple.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a:hover {
    color:#fff;
    background: url(........uploads/custom/apple-hover.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a {
    text-indent: -9999px;
    }

    2. I now have a retina resolution problem. When I view this on an iPhone 5 and my Macbook Pro Retina the apple icon is pixilated. Any ideas for a quick fix for this. If I do it as 64px x 64px then it looks to large. I imagine I have to add something to the CSS to constrain the proportion then upload the 64 x 64 images. Will you help me with that?

    3. Would you mind going back through and deleting my personal links from this post. I abbreviated them above. Could you go back and abbreviate the others please?

    Thank you again for your help!

    #129273

    Many thanks, it’s all done perfectly. Just FYI, I need to put section ID to specific position.

    BTW, do you have any solution to change the theme color by manually? Due to I wanna change the whole button color at once. Do I need to submit a new topic for this question?

    Cheers!

    Hey!

    You can suggest new features/tweaks here: https://kriesi.at/support/topic/enfold-feature-requests – if more users support it we’ll look look into it.

    Best regards,

    Peter

    #129517

    The nav bar functions are called in header.php – search for

    $args = array('theme_location'=>'avia2', 'fallback_cb' => '', 'container'=>'', 'echo' =>false);
    $nav = wp_nav_menu($args);
    echo $nav;

    (small nav bar at the top) or

    echo "<div class='main_menu' data-selectname='".__('Select a page','avia_framework')."'>";
    $args = array('theme_location'=>'avia', 'fallback_cb' => 'avia_fallback_menu', 'walker' => new avia_responsive_mega_menu());
    wp_nav_menu($args);

    (main menu nav bar).

    #129488

    In reply to: Customize Logo Size

    Somehow not working.. I don’t know if I’m putting the code correctly or not as I’m very basic in coding.

    Also here is a temporary link to our website “http://muharraqi.hostingsiteforfree.com/&#8221;

    Also I want to delete the grey bar from the top completely..as its use less for us.

    Please have a look the way I’m putting the code in custom.css

    /* Have fun adding your style here :) – PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */

    /* General Custom CSS */

    /*

    Desktop Styles

    ================================================== */

    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

    @media only screen and (min-width: 768px) {

    /* Add your Desktop Styles here */

    /*header with social icons: */

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 200px; line-height: 200px; }

    }

    /*

    Mobile Styles

    ================================================== */

    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (max-width: 767px) {

    /* Add your Mobile Styles here */

    }

    1) I think the “Google Map” plugin you’re using breaks the javascript. It loads the google map js file from an insecure source

    <script type='text/javascript' src='http://maps.googleapis.com/maps/api/js?sensor=true&libraries=places&ver=3.5.2'></script>

    and the browser stops to process the javascript files.

    2) All other insecure resource are images – you can try to use: http://wordpress.org/plugins/wordpress-https/ which will replace the http:// with https:// for all media gallery items.

    #129445

    Hi!

    I didn’t manage to align the text on one line but you can use following code

    #top .dropdown_widget .buttons .button {
    width: 100%;
    line-height: 20px;
    }

    to center align both buttons underneath each other…

    Best regards,

    Peter

    #129235

    Hi progenki,

    First, please don’t self bump or just respond with question marks like the above. Our queue system works by the oldest posted response within a topic so each time you do that it just puts your post to the end of our queue.

    For your issue, it sounds like its either a caching issue or a permissions issue on the file the theme creates to store all the css from the styling tab. Make sure the avia folder in your uploads folder has at least 755 chmod permissions as well as the file inside it.

    Regards,

    Devin

    #129411

    In reply to: Header Margin

    Hi,

    Please add this css to you /css/custom.css file OR to Quick CSS located in enfold > (theme options) > layout styling at the bottom of the page: (change 50px

    .av-special-heading {
    margin-top: 0px !important;
    }

    Thanks,

    Nick

    #129378

    Hi,

    The best way to go about it, is to first install the Simple Image Sizes plugin ( http://wordpress.org/extend/plugins/simple-image-sizes/ ). The plugin will give you complete control over images: setting constraints for specific locations like blog, thumbnails, portfolio, gallery, shop, etc. along with the ability to set whether to crop an image or not in Settings > Media.

    Changing the dimensions of images does NOT automatically change all the images already uploaded but only affects new uploads. To change the sizes of images already uploaded, you will need to use the Regenerator – also a part of the Simple Image Sizes and found on the bottom of Settings Media. Don’t forget that images scale down, so always upload images bigger (or the same) as the constraints you set in Settings > Media (with the plugin) or you will get blurry (stretched) or incomplete images.

    You can add your custom image size to use by following this tutorial but fpr the last part where instead of gallery you would add blog image. https://kriesi.at/support/topic/how-to-change-size-of-featured-image-in-portfolio-item-page-and-disable-lightbox#post-123789

    Thanks,

    Nick

    #129385

    Yea got the same question… If i change the color the whole backround is changing not only the navigation bar. And is it possible to change the transparency of it?

    #129030

    Hi,

    you have a javascript error coming out of the piece of inline code you added for people with old browsers above the </header

    You need to change your line

    var $buoop = {vs:{i:8,f:15,o:,s:5,n:9}}

    to

    var $buoop = {vs:{i:8,f:15,o:10.6,s:5,n:9}


    To change the height , here is css

    #footer {
    padding: 0px 0 0px 0 !important;
    }
    @media only screen and (min-width: 768px){
    div .av_one_third {
    height: 180px;
    }}
    #socket .container {
    padding: 5px 0;
    margin-top: 15px;
    }

    Please add it to your /css/custom.css file

    Thanks,

    Nick

    #129373

    Hi,

    Have you added this? Try to remove it and see if anything changes.

    .main_color {
    background: #FFF url(https://www.naturaloutlook.com/wp-content/uploads/White_Pixel.gif) top left repeat fixed;
    }

    Thanks,

    Nick

    #114723

    Wishlist for Advance LayerSlider WP

    – To the right or left of the button enter / exit preview. An ms slider button or indicator on the ms or the ability to pause the animation.

    This is useful especially if you have a lot of layers and you want to allign them ( aside from using options )

    – Improve moving the layers. Number 1 Layer should be the top layer or the one that is first visible. If you have multiple layers the bottom layer stacks / shows first than layer 1 . Just like in photoshop and other editing programs , the top layer is first visible.

    – Layer slider transitions are like 100 transitions in total and a lot of good ones too. How about adding some of them to the layer objects transition ? It would be nice to add like 5 – 10 more transitions to add to the slide in and fade effects.

    #127312

    It should be:

    #top .social_bookmarks_tumblr a {
    background: url(https://yoursite.com/wp-content/uploads/custom/apple.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a:hover {
    color:#fff;
    background: url(https://yoursite.com/wp-content/uploads/custom/apple-hover.png) no-repeat center;
    }

    So that the background is on the link and the hover as well.

    #129265

    Hi warrentkachuk,

    Can we see the pages live? Inspecting the code will give us the most information to try and figure out what the issue is.

    As an aside, our Queue system works by oldest post within a topic so self-bumping or self-responding pushes the topic to the end of our queue instead of bringing it forward.

    Regards,

    Devin

    #26174
    Michae1
    Participant

    Please Help!

    I just updated from 1.3 to 1.7.1 via FTP, and now I get nothing, literally nothing – no error, just a white screen of non-functioning death :(

    Here’s what I did and my environment :

    1. Backed up the “enfold” theme folder from my server to my desktop
    2. Deleted the “enfold” theme folder on the server
    3. Uploaded the new, unzipped “enfold” folder (1.7.1) in it’s place via FileZilla. All files completed without any problems.
    4. My host is WPengine. I used the Staging version of the site, for testing, which is good, but there were a TON of updates I made on Staging that I fear I’ve now lost
    5. Refreshed to a white screen of non-functioning death :(

    Have NO idea what could have gone wrong, but I’m completely freaked out. Please help! I have a client meeting tomorrow that I need this up for. Thank you!!


    Update : Apparently it was a 1d10t user error :) I just uploaded the “enfold” folder WITH the nested unzipped “enfold” folder in it. Thank God! I was freaking out. Mostly everything seems in place. Going to go finish going through all the details now. Thanx!

    #129530

    Hi,

    Please use this instead.

    @media only screen and (max-width: 767px) {
    .responsive #top #main .sidebar {
    display: block !important;
    }
    }

    Regards,

    Ismael

    #127310

    Devin, small problem:

    1. I added Ismael’s code at the end of the custom.css

    2. I put apple.png and apple-hover.png in—-removed—-

    3. Problem: When I hover the apple icon shifts in the hover state. I specifically LOCKED the layers in Photoshop. The normal state apple icon and the hover state apple icon are exactly in the same place pixel for pixel. Do you have any idea why this is happening?

    See here > —removed—-

    The entire css is as follows:

    /* Have fun adding your style here :) - PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */

    /* General Custom CSS */

    /*
    Desktop Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

    @media only screen and (min-width: 768px) {
    /* Add your Desktop Styles here */

    }

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (max-width: 767px) {
    /* Add your Mobile Styles here */

    }

    #top .social_bookmarks_tumblr {
    background: url(...wp-content/uploads/apple.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr:hover a {
    color:#fff;
    background: url(....wp-content/uploads/apple-hover.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a {
    text-indent: -9999px;
    }

Viewing 30 results - 140,941 through 140,970 (of 142,508 total)