Forum Replies Created

Viewing 14 posts - 31 through 44 (of 44 total)
  • Posted in:
  • in reply to: Contact Form Side by Side Fields #41856
    Zachy
    Member
    Post count: 83

    Hi Ed,

    Thanks for the response and suggestion! Unfortunately, I couldn’t get that method to work for me. I’m wondering if there may be something in the Dante stylesheet throwing it off. I’ll try to dive a little deeper on my end.

    Thanks,
    Zach

    in reply to: Swift framework shortcodes 404 #41847
    Zachy
    Member
    Post count: 83

    Hey all,

    I was having the same 404 error issue. I deleted the “dante” folder on my server and did a fresh install of the theme using the upload method in WordPress. It seems to be working perfectly now.

    Thanks,
    Zach

    in reply to: Contact Form Side by Side Fields #41400
    Zachy
    Member
    Post count: 83
    This reply has been marked as private.
    in reply to: Button Shortcode Link? #40583
    Zachy
    Member
    Post count: 83

    Happy to help where I can Tahir, thanks!

    – Zach

    in reply to: Countdown Page #40580
    Zachy
    Member
    Post count: 83

    You’re exactly right Ed! Thanks for the reply!

    – Zach

    in reply to: Accordion Shortcode to embed within Modal #40579
    Zachy
    Member
    Post count: 83

    That helps tremendously! Thanks Ed!

    Happy New Year!

    – Zach

    in reply to: Countdown Page #38841
    Zachy
    Member
    Post count: 83

    I figured it out. It’s as simple as scrolling down on the “edit page” or “edit post” page and unchecking the show header box.

    I’m sorry for any wasted time!

    in reply to: Youtube video, without showing related videos at the end. #38826
    Zachy
    Member
    Post count: 83

    Hi there Havlil,

    I tested it out by adding “?rel=0” (without the quotation marks and that’s the number zero) at the end of the youtube link and it seemed to work with the Dante Video Player.

    I know it doesn’t seem like much but something as simple as 1 character can throw it off.

    I hope this helps, if not just let me know and I’ll dig a little deeper for you!

    Happy Holidays!

    -Zach

    in reply to: Button Shortcode Link? #38821
    Zachy
    Member
    Post count: 83

    Hey Martez. You’ll want to place the link in between the quotation marks after the word link.

    So it would go here:
    link=”www.yourlink.com”

    When you’re editing a post or a page there’s a shortcodes toolbar that you might find helpful. It gives you shortcode options in a more visual way. I’ll attach a screenshot of it.

    Let me know if you need anymore help! Happy Holidays!

    -Zach

    in reply to: Body text links styling #38734
    Zachy
    Member
    Post count: 83

    It’s my pleasure. I’m still clueless when it comes to certain code but I like to help where I can.

    Here’s a link to my website that has the link to the file in the cloud.

    insidegeek.com/rhodez

    I’m not sure if the structure of the child theme is the same. Do you have this directory on your web server?

    wp-content > themes > dante > swift-framework > shortcodes.php

    in reply to: Body text links styling #38728
    Zachy
    Member
    Post count: 83

    Man, they don’t make it easy. Here is the link to my website that holds the link to the shortcodes file. I’m sorry for the mayhem.

    insidegeek.com/rhodez

    in reply to: Body text links styling #38724
    Zachy
    Member
    Post count: 83

    Haha yeah that wouldn’t be ideal!

    The way I made it work was by changing the shortcodes.php file and adding a few things to the style.css file.
    I’ve attached the edited shortcodes.php file which will need to be added to your web server.

    (EDIT: I’m not allowed to attach a .php file for security reasons. I’ll upload it to my cloud and put a link to it but if that doesn’t work. I can email it to you if you give me your email address.)
    On your web server the file would typically be found here:

    wp-content > themes > dante > swift-framework > shortcodes.php

    ***I highly recommend renaming the original shortcodes.php to shortcodes-original.php instead of replacing the file. That is just incase anything were to go wrong you have the original file in the same place.***

    – Now in your style.css file you’ll want to find all of the “a” selectors (they’re listed in a row) and add what I have in bold below:

    a {
    text-decoration:underline;
    outline: none!important;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    }
    a:hover {
    text-decoration: underline;
    }
    a:active {
    text-decoration: underline;
    outline: none;
    }
    a:focus {
    text-decoration: underline;
    -moz-outline-style: none;
    outline: none;
    }

    – Then you’ll want to add a custom CSS class as well:

    .social-icon {
    text-decoration:none;
    }

    Save the style.css file and it should underline all of your text hyperlinks and keep the social icons as they were.

    Let me know if this helps or if you have any questions. If you want me to walk you through it step by step I can give you my Skype information. Good luck!

    in reply to: Body text links styling #38650
    Zachy
    Member
    Post count: 83

    I’m sorry rhodez, those image links wouldn’t work for me and I couldn’t edit my post a second time.

    See attachments below.

    Underline-CSS is the first image.

    Underline-HTML is the second image.

    in reply to: Body text links styling #38647
    Zachy
    Member
    Post count: 83

    Hey rhodes,

    You can create a custom class at the bottom of your style.css file.

    – In WordPress go to:
    Appearance > Editor

    – Then on the sidebar to the right of your screen you’ll want to scroll to the bottom and select your style.css file.
    – Copy the text in the image below to the bottom of the style.css file.

    Underline CSS

    When you add a link to a page or blog post using HTML just call the class like this:

    Underline HTML

    I hope this helps! If this isn’t what you’re looking for just let me know. Also, any screenshots or additional information on how you’re inputting your hyperlinks in WordPress will help me to figure it out!

    Thank you and Happy Holidays!

    -Zach

Viewing 14 posts - 31 through 44 (of 44 total)