Forum Replies Created

Viewing 30 posts - 421 through 450 (of 484 total)
  • Author
    Posts
  • in reply to: Button and Field Inconsistency #218411
    This reply has been marked as private.
    in reply to: Search Submit Button #218406
    This reply has been marked as private.
    in reply to: Head With Social Media and Large Logo #218403

    Hey Dude,

    Ok you are going to have to point me in the right direction. Where is the “child theme functions.php”? Or do I have to create one? And also the register-admin-options.php. Is there a child for that or do I create one?

    Thanks, Jas

    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Layout Builder Image Resize Problem #218329
    This reply has been marked as private.
    in reply to: Head With Social Media and Large Logo #218327

    Hi Ismael,

    I’ll give it a shot and get back to you. Thank you. By the way, which of these files will remain after I do an Enfold update via the WordPress dashboard?

    Thanks, Jas

    in reply to: Head With Social Media and Large Logo #218233

    Hi Ismael,

    I’m confused. I’m having the same problem I had last time I tried to do this. I’m going to explain in great detail so I can put this problem to rest. These three items below show you the three different ways I’ve been told to do this.

    1. Peter’s post here https://kriesi.at/support/topic/adding-custom-social-icons/#post-170356 tells me that I do the following.
    – edit register-admin-options.php
    – edit functions.php

    2. Dude then posted above “You don’t need to hack the theme files – please insert this code into the functions.php file:” https://kriesi.at/support/topic/adding-slideshare-to-header-social-icons/#post-200202
    – this is telling me to edit the functions.php only NO editing of register-admin-options.php

    3. You told me to:
    – edit functions.php BUT you suggested different code than Peter’s post.
    – register-admin-options.php

    Conclusion:
    – It appears to me there are three slightly different way s of accomplishing this task. I would like to find the simplest way possible to achieve this task. Would you PLEASE study these three ways and explain to me which is the best way? Talk to me like a baby. I really appreciate your time but this is a tricky one and quick comments have left me confused.

    Question:
    – I do not update the Enfold theme via FTP because doing so via the WordPress dashboard tend to restore more settings. Which of these files will remain after I do an Enfold update via the WordPress dashboard? Finding the simplest way to achieve my goal will mean that I have to restore less code after an update.

    Thank you for your time, Jasmer

    in reply to: Masonry Blog Not Working #218231
    This reply has been marked as private.
    in reply to: Masonry Blog Not Working #218229

    Thanks Dude, thanks Ismael!

    I spent 2 hours trying to figure this out. All the existing posts I found said to just deselect or to set the drop down to the top option “select”. none of them said to select a different page for a blog. I didn’t think of trying that.

    I might suggest that we add a bit of text in the layout builder that instructs the user how to do this. I watched the entire video and it said nothing about this.

    Thanks guys for pointing me in the right direction, Jas

    in reply to: Enfold – Featured image remove link to image #217532

    Ismael provided code that removes both image links, the first from the main blog page and the second from the full post page. Great!

    Devin provided code that only removes the image link from the full post page in case you want only that link removed.
    https://kriesi.at/support/topic/how-to-remove-a-link-to-the-original-image-from-a-featured-image/

    #top.single-post .big-preview.single-big a,
    #top.single-post .small-preview {
    pointer-events: none;
    cursor: default;
    }

    Thanks to Ismael and Devin! Jas

    in reply to: Layout Builder Image Resize Problem #217416

    Hey Ismael,

    Just ran across a plugin that should do the trick. It’s called WP Retina 2x. There is an article on his blog that might be helpful to others. I’ll get back to you with the results.

    http://www.totorotimes.com/news/retina-display-wordpress-plugin

    Thanks, Jas

    in reply to: Masonry Blog Not Working #216961
    This reply has been marked as private.
    in reply to: Layout Builder Image Resize Problem #216959

    Ok I’ll try it and get back to you. Thank you!

    in reply to: Author Page Gravatar Problem #216931

    I solved it by placing the following code. Why do you think the two sizes became different?

    span.rounded-container {
     width: 75px;
     height: 75px;
    }
    in reply to: Head With Social Media and Large Logo #216891

    Hi Dude,

    This didn’t work. This is what I did.

    1. I removed the code I added to register-admin-options.php because you said I didn’t need to hack the theme file.
    2. On fontello site, I selected a Yelp font from the zocial font family and downloaded the zip
    3. I added the code below to the bottom of functions.php and saved.
    4. I went to Enfold – General Settings and uploaded the zip as you can see here http://goo.gl/PUZ9n2
    5. I then went to Enfold – Header and added a social item and looked for “Yelp” in the “Social Icon” drop down list.
    6. I don’t see Yelp in the list. What did I do wrong? Please talk to me like I am a baby. Ha.

    Thank you, Jas

    Here is my code.

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['yelp']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Yelp'] = 'yelp';
    return $icons;
    }
    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Masonry Blog Not Working #216816
    This reply has been marked as private.
    in reply to: Masonry Blog Not Working #216814

    Hi Ismael,

    I watched that video before I submitted the ticket. Did I miss something? I researched this fully and I see several people are having this issue. I read all the submitted trouble tickets. I’m fine with full width. It just doesn’t work. Right now I have these settings.

    Enfold Settings: Theme Options = Display blog set to nothing or “Select Page”
    General Settings: Blog Style = Grid Layout
    Page Settings: Content Element > Fullwidth Masonry > Layout = No sidebar

    If you notice, the sidebar does not go away even with the above settings. Can you tell me why?

    You can check it out now. I’ll post the link in a private message.

    Thanks, Jas

    in reply to: Layout Builder Image Resize Problem #216813

    Hi Ismael,

    I can do twice the dimensions at 360×144, but wouldn’t the resolution come into play at some point? The iPhone 5 is 326ppi and the Macbook Pro Retina is 227ppi. So should I do 360×144 at 326ppi to ensure the crispest image or is that overkill?

    Gracias! Jas

    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Font Weight Font Size #216776
    This reply has been marked as private.
    in reply to: Font Weight Font Size #216763

    Gracias!

    1. Is there a way to put the mail envelope icon inside the button to the left of the word “submit’? Shortcode? How would I do that?

    2. Yes I noticed that the font looks the same in Firefox and Chrome. Safari looks much better. I’m guessing that Firefox and Chrome doesn’t recognize anything under font weight 300. I just doesn’t look as crisp. HOWEVER, the site I sent you a link to above actually looks perfect on all. I wonder what they did?

    Thanks for your help Yigit! Jas

    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Font Weight Font Size #216754

    Yigit,

    Thank you.

    1. I don’t think the visual change to the submit button worked. It seems mostly invisible.

    2. For some reason chrome does not look as thin as Safari. If you look at my screenshot of safari you can see the difference.
    – Safari
    – Your Chrome

    3. The color change to the submit button also took the blue away from the search box but that is ok. I think I like that.

    Thank you, Jas

    in reply to: Layout Builder Image Resize Problem #216744

    Hi Josue,

    In order to avoid the problem I attempted to upload another image.

    As you can see I saved it at 180×72 @ 326ppi. I did this because I want it to be a retina image. The iPhone 5S is 326ppi and the Macbook Pro Retina is 227ppi. For some reason it still appears pixelated. Do you have any idea why?

    Also, would mind deleting that link to my site in your comment please.

    Thank you, Jas

    in reply to: Layout Builder Image Resize Problem #216737

    I changed it back because it didn’t work. I wasn’t sure what else to do. Will you make that link private in your post please? Any idea how to solve it? I think I’m just going to upload a different size image. that seems easier right?

    in reply to: Font Weight Font Size #216728

    Hi Yigit,

    Urgent. Will you please answer the last 3 posts when you have a moment?

    There are a couple posts I could not delete (I put a “-” instead) because I solved those issues, but there are still three readable posts I’d like to solve.

    Thank you, Jas

    in reply to: Layout Builder Image Resize Problem #216726

    Thanks Josue,

    It did not work. I did a find and replace in Dreamweaver. Very simple then uploaded the file via FTP and replaced the old file. Then I cleared my cache and cleared my web host cache. Still doesn’t work. Should I put !important at the end? so..

    img, a img {
    		border:none;
    		padding: 0;
    		margin:0;
    		display:inline-block;
    		max-width: 100%;
    		image-rendering: optimizeQuality!important;
    	}
    in reply to: Head With Social Media and Large Logo #216715

    Thanks Yigit!

    1. CSS worked!

    2. I followed Peter’s post here but it didn’t work.
    https://kriesi.at/support/topic/adding-custom-social-icons/#post-170356

    Here is what I did:

    A) register-admin-options.php

    (added Apple and Yelp entires in alphabetical order. This worked, As you can see there are two empty place holders in the header on my site. They are functional but no icons.)

    'avf_social_icons_options', array(
    
    									'500px' 	=> 'five_100_px',
    									'Apple' 	=> 'apple',
    									'Behance' 	=> 'behance',
    									'Dribbble' 	=> 'dribbble',
    									'Facebook' 	=> 'facebook',
    									'Flickr' 	=> 'flickr',
    									'Google Plus' => 'gplus',
    									'Instagram'  => 'instagram',
    									'LinkedIn' 	=> 'linkedin',
    									'Pinterest' 	=> 'pinterest',
    									'Skype' 	=> 'skype',
    									'Soundcloud'=> 'soundcloud',
    									'Tumblr' 	=> 'tumblr',
    									'Twitter' 	=> 'twitter',
    									'Vimeo' 	=> 'vimeo',
    									'Xing' 		=> 'xing',
    									'Yelp' 	=> 'yelp',
    									'Youtube'   => 'youtube',
    									'Special: RSS (add RSS URL, leave blank if you want to use default WordPress RSS feed)' => 'rss',
    									'Special: Email Icon (add URL to a contact form)' => 'mail', => 'mail',

    B) Downloaded font zip from Fontello

    C) Checked social-fontello-codes.css for code and Fontello website (I only tried one icon because I wasn’t sure how to add two)
    See here
    http://goo.gl/Wbw1F3
    http://goo.gl/VGqGCc

    D) functions.php

    (added at very bottom)

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['yelp']	 = array( 'font' =>'social-fontello', 'icon' => 'ue800');
    return $icons;
    }

    Doesn’t seem to work. Any ideas? Thanks, Jasmer

    in reply to: Layout Builder Image Resize Problem #216657

    Hi Josue,

    Thank you for getting back to me so quickly.

    1. The CSS distorted the image dimensions. I’m not sure why because I check the dimensions in Photoshop and they are proportionally correct. I even changed it to another proportionally correct dimension 200×80 and the same problem occurs.

    2. Why would I have to add Quick CSS? Every time I am going to make an image change I need to add Quick CSS? Is there a way to get it to work the way it is designed to work in the layout builder? Is something interfering with it working correctly without CSS?

    Thanks, Jas

    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Layout Builder Image Resize Problem #216648
    This reply has been marked as private.
    in reply to: Head With Social Media and Large Logo #216333
    This reply has been marked as private.
    in reply to: Head With Social Media and Large Logo #216323

    Hi Yigit,

    I just noticed that the CSS to remove the lines between and around the social icons doesn’t carry through to the mobile site. How can we address that?

    Thank you, Jas

    in reply to: Font Weight Font Size #216318

    Hi Yigit,

    I noticed this code causes a problem in the search box. See that little space? When I remove the code the problem goes away. Hmm.

    #top input[type="text"] {
     font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
     font-weight: 100!important;
    }

    Thank you so much for your time, Jasmer

    • This reply was modified 10 years, 9 months ago by Jasmer. Reason: one problem solved, one still remaining
Viewing 30 posts - 421 through 450 (of 484 total)