Okay
  Public Ticket #1069250
Help with formatting assets
Closed

Comments

  •  2
    Loyd Atwood started the conversation

    1. I would like the text on the homepage to offset from the left edge, but not be centered as in the demo. (See attachment) and use a smaller font for the copy. I substituted the "Subtitle-text"

    2. I also would love to use a different font (something hipper) for the Titles: "What's Happening", "Latest News", "Contact". I have a font in mind I just do not see where to load it into the website.

    Thank you. I tried going to your regular support but it did not work for me.

  •  840
    Jelly replied

    Hi,

    1. Please add this custom style to main-hardrock.css, please add it in the end of the file:

    .intro .text-overlay {left: 55px;}
    

    2. You will need use font face technical to add your font in html template. You can see more detail here: http://www.font-face.com/.

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    I was able to swap in new fonts on my own. 
    Adding the custom style has no effect on the display. 

    Here's what I have: In the HTML I changed line 104 to <div class="vcenter text-left text-overlay"> from the original 

    <div class="vcenter text-center text-overlay">

    I added the new line .intro .text-overlay {left: 55px;} to the main-hardrock.css file at the very end of the file. I attached the file for you to look at. Thank you.

  •  840
    Jelly replied

    Hi,

    I think the problem by caches in your hosting, maybe you can wait few hours and check it again? I can't see my custom style in main-hardrock.css file from your live site.

    You can check it in here: http://loydster.com/metsa/styles/main-hardrock.css.

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    I was able to make it work by adding the custom style to the Intro section of the CSS. Like this: .intro > div,

    .intro .vcenter {

      width: 100%;

    }

    .intro .text-overlay {

      left: 55px;

      position: absolute;

      z-index: 4;

    }

    .intro .text-overlay .logo-intro {

      -webkit-transition: -webkit-transform 0.35s;

      transition: transform 0.35s;

      -webkit-transform: translate3d(0, -100%, 0);

      transform: translate3d(0, -100%, 0); I did not upload the fix because it did not work. But I think I am in good shape now. Beings as we are already chatting, I see there is a Desplegar navegación which I believe means dropdown menu. How do I activate this dropdown menu? I want to have a dropdown for menu item “About”. Can you give me a quick fix on taking the dropdown live? URL is http://loydster.com/metsa/index.html Thanks again.

  •  840
    Jelly replied

    Hi,

    The submenu will look like below:

    <ul class="nav navbar-nav navbar-right">
      <li class="active"><a href="#anchor00">Home</a></li>
      <li><a href="#anchor01">Events</a></li>
      <li><a href="#anchor02">Artists</a></li>
      <li><a href="#anchor03">About</a>
            <ul class="submenu">
                <li><a href="menu.html">Lunch Menu</a></li>
                <li><a href="menu1.html">A La Carte Menu</a></li>
                <li><a href="menu2.html">Set Menu</a></li>
            </ul>
      </li>
      <li><a href="#anchor04">Albums</a></li>
      <li><a href="#anchor05">Gigs</a></li>
      <li><a href="#anchor06">Gallery</a></li>
      <li><a href="#anchor07">Blog</a></li>
      <li><a href="shop.html">Shop</a></li>
      <li><a href="#anchor08">Contact</a></li>
    </ul>
    

    Then please add this custom style for submenu:

    /* CUSTOM STYLE */
    /*Sub Menu*/
    ul.submenu {
      opacity: 0;
      visibility: hidden;
      top: 60px;
      background-color: rgba(12,12,13,0.78);
      min-width: 180px;
      text-align: center;
      position: absolute;
        -webkit-transition: all 0.5s ease-in-out;
           -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
             -o-transition: all 0.5s ease-in-out;
                transition: all 0.5s ease-in-out;
    }
    ul.submenu > li {
      list-style: none;
      padding: 20px 0 0;
    }
    ul.submenu > li:last-child {
      padding-bottom: 20px;
    }
    .overflow.fixed ul.submenu {
        background-color: #000;
        box-shadow: 0 1px 3px rgba(0,0,0,0.11);
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        -webkit-font-smoothing: antialiased;
    }
    ul li:hover .submenu {
      visibility: visible;
      opacity: 1;
    }
    .navbar-nav .submenu a {
        color: #fff;
    }
    .navbar-nav .submenu a:hover {
      color: #ca9e2a;
    }
    .current a {color: #ca9e2a !important;}
    @media only screen and  (max-width : 768px) {
    ul li .submenu {
      visibility: visible;
      opacity: 1;
      top: 0;
      position: relative;
    }
    .navbar-nav > li:hover > .submenu {
        display: block;
        position: relative;
        width: 100%;
        margin-top: 5%;
      top: 20px;
    }
    .navbar-nav > li > .submenu li {
        margin: 10px 0px;
    }
    }

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    Thank you. That worked nicely on the main menu for a desktop browser, but there's some issue when it sizes down to device. There is odd spacing and a springy look to it which leads me to believe more code needs to be added to the CSS to format the smaller menu. Can you tell me how to make it display correctly? Also, I tried to add more submenu to the "Media" item on the main menu, but it does not display. Thanks again. I appreciate this kind of support.

    http://loydster.com/metsa/index.html

  •  840
    Jelly replied

    Hi,

    1. Maybe you can take me some screenshot about the problem when sizes down? I don't see any problem in my side.

    2. Please check my submenu code be careful, your code is wrong now so it not working.

    Correct type:

    <li><a href="#anchor03">About</a>
            <ul class="submenu">
                <li><a href="menu.html">Lunch Menu</a></li>
                <li><a href="menu1.html">A La Carte Menu</a></li>
                <li><a href="menu2.html">Set Menu</a></li>
            </ul>
      </li>
    

    Incorrect type:

    <li><a href="#anchor03">About</a></li>
    <ul class="submenu">
                <li><a href="menu.html">Lunch Menu</a></li>
                <li><a href="menu1.html">A La Carte Menu</a></li>
                <li><a href="menu2.html">Set Menu</a></li>
    </ul>
    

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    Thank you. I thought it was something I messed up. Your help fixed things.
    On the home page at http://loydster.com/metsa/index.html in the "News" section, when you click on the "View More" button, the AJAX expansion has a video. If you play the video and then click on "View Less", the video continues to play. Is there a workaround so that when you click on "View Less", when the window minimizes - the video stops playing?
    Also, what is the process for adding new images for individual pages. There is a default image that displays on every page. I replaced the original image with an image of a mixing board, but I'd like to use different images for each page. How do I achieve this?

    And, can I replace the image at the top of the page (the guitar which says "Blue Guitar Highway") with another image and a target tag that would automatically open the "View More" AJAX window to display the video?

    Thanks again.

  •  840
    Jelly replied

    Hi,

    1. I will check the video when open it by ajax with our developer.

    2. You can add each image for each page with specific id like below:

    <section class="intro intro-mini full-width jIntro bg-blog" id="about">
    // Some thing here
    </section>
    

    Then the css will look like below:

    #about.bg-blog {
        background-image: url(../images/demo/blog/bg-blog.jpg);
    }
    

    And go for other section like albums:

    <section class="intro intro-mini full-width jIntro bg-blog" id="albums">
    // Some thing here
    </section>

    Then the css will look like below:

    #albums.bg-blog {
        background-image: url(../images/demo/blog/bg-blog.jpg);
    }

    I hope it's clearly for you.

    3. You can replace your own image by change the logo-intro image in your index.html file:

    <div class="logo-intro"><img src="put your image link here" alt=""></div>

    You can't use learn more on slider with ajax, it no available and quite complex to do.

    Best Regards,
    Jelly Team

  •  840
    Jelly replied

    Hi,

    For the first problem, please follow the step to fixed it:

    Open this file scripts/news.js:

    $(".news-content").fadeOut("slow"); 
    

    and add .html("") to the end, like this:

    $(".news-content").fadeOut("slow").html("");

    Then check your website again.

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    Thank you. It worked like a champ. 
    I am trying to add a "back to top" button. I tried adding:

    <!-- HEADER -->
        <header id="jHeader">
         <a name="top"></a> 

    to the header and then added:

     <li><a href="#top">Top</a> </li>

    To the footer, but it did not work. Any suggestions? The pages are longer than the original demo and I'd like a shortcut to get back to the top of the page.

    Thank you.


  •  840
    Jelly replied

    Hi,

    I think you just need use this:

    <li><a href="#jHeader">Top</a></li>
    

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    Actually, this works, too. 

    <li><a href="#">Top</a></li>
    But, beings as I have come on here, can you see anything wrong with this tag?
    div class="logo-intro">
              <a href="https://www.amazon.com/Blue-Guitar-Highway-Paul-Metsa/dp/0816676429/ref=as_sl_pc_tf_til?tag=itdex-20&linkCode=w00&linkId=NHE52QDIAX3K5UOZ&creativeASIN=0816676429"><img src="images/demo/logo-intro.png" alt="Buy it Now!"></a></div>
              <h2 class="subtitle-text">Paul Metsa Band<br>Live at the Guthrie</h2>
              <div class="voffset50"></div>
    Thank you.
  •  840
    Jelly replied

    Hi,

    I don't know where the tags you want mentioned in your comment, maybe you can specific it?

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    I just want to know why the tag (the first line below) does not work. It's in the "intro" it was originally a guitar shaped png file but I want to link it to the album on cd baby.

    <a href="https://www.amazon.com/Blue-Guitar-Highway-Paul-Metsa/dp/0816676429/ref=as_sl_pc_tf_til?tag=itdex-20&linkCode=w00&linkId=NHE52QDIAX3K5UOZ&creativeASIN=0816676429"><img src="images/demo/logo-intro.png" alt="Buy it Now!"></a></div>
    <!-- This is the section it comes from-->
    <div class="logo-intro">
              <a href="https://www.amazon.com/Blue-Guitar-Highway-Paul-Metsa/dp/0816676429/ref=as_sl_pc_tf_til?tag=itdex-20&linkCode=w00&linkId=NHE52QDIAX3K5UOZ&creativeASIN=0816676429"><img src="images/demo/logo-intro.png" alt="Buy it Now!"></a></div>
              <h2 class="subtitle-text">Paul Metsa Band<br>Live at the Guthrie</h2>
                <div class="voffset50"></div><br>
  •  840
    Jelly replied

    Hi,

    I see it's work well in your website now. It's right? Do you still need my help?

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    No, I figured it out. Thank you. But I am failing at implementing a "Digital Tip Jar" I would like to place the following code in the first AJAX window on the home page. It would sit inside the news.02.html video player code. This is the code I need to use but I cannot get it to display correctly. I don't think the syntax is correct but it works on the artist's current page.

    <div class="col-md-3">
    <hr>
    <p>Digital Tip Jar</p>
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="7L9Q4ZMCPQR52">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    </div>
  •  840
    Jelly replied

    Hi,

    I don't know your problem, because this is your custom code, maybe a screencast can help me understand what you want then I can see if I can do something to help you, I'm not sure I can figure out it but I will try.

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    The widget is from the client's existing site at www.paulmetsa.com - The first attachment.

    I want to add the widget to the new site in the html for news-01.html - To look like the second attachment.

    Basically I want to add a div to news-01.html that will display the Paypal widget without stretching it across the 

    <div class="content-lastnew">     I think I need a four column div to place it in.

    Hopefully this makes sense to you.



  •  840
    Jelly replied

    Hi,

    I don't try it before so it's difficult to write exactly code for you. But you will need something like this:

    <div class="content-lastnew">
        <div class="close-btn close-new"></div>
        <div class="col-md-7"> <!-- columns for content -->
        <iframe width="560" height="315" src="https://www.youtube.com/embed/UXak698VknI" frameborder="0" allowfullscreen=""></iframe>
        <br><br>
        <p>Paul's performance at the Guthrie Theater in 1994 offers up the story of Kitty Genovese (and other women) as they try to coexist with men. Genovese was sexually assaulted and then stabbed to death outside her apartment building in Kew Gardens, a neighborhood in the New York City's Queens, while many people looked on.</p>
        <br>
        <p> While dedicated to Genovese's memory, this song sends a strong message about how things must change if Women are to remain safe on our streets, be free from harassment, and allowed to reach their full potential.</p>
        </div>
        
        <div class="col-md-5"> <!-- columns for button sidebar -->
            <a href="http://www.cdbaby.com/cd/paulmetsa5" target="cdbaby" style="display:inline-block;background:url(http://content.cdbaby.com/img/links/link-dark-buy-song.png) no-repeat;width:124px;height:39px;" alt="Paul Metsa: Walkin' in a Woman's World (Live)"></a>
        </div>
    </div>
    

    I can't provide support for it because it not relate with our item, so you will need figure out it with your self. But I think if you want create columns in our template, you can take a look in bootstrap grid system: http://getbootstrap.com/css/#grid.

    I hope it's helpful for you to figure out it with your self.

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    Thank you. I will play with this and figure it out.

  •  840
    Jelly replied

    Hi,

    No problem, let me know if you still need my help in anything else.

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    Hello Again:

    I am trying to identify which CSS sheet to use to change the <h1 class="primary-title">Press</h1> font style. On the attached page the primary title is "Press". My client wants a "hipper" looking font. I planned on substituting with either 

    font-family: 'Chewy', cursive; 0r
    font-family: 'Passion One', cursive;

    See http://loydster.com/metsa/press.html

    Can you point me too the correct stylesheet and CSS to change this? Thank you.

  •  840
    Jelly replied

    Hi,

    The both font name: Chewy and Passion One available in your website yet? You will need import it first, if it come from google fonts or you will need use font face to add this font in your website, then you can use this custom style to change the font family:

    .primary-title {
        font-family: "Chewy", cursive;
    }
    

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    Thank you. Is there any way to achieve the attached image as subheaders from the home page? I would like them to be semi transparent if possible. I think the functionality is already in the package but I'm unsure how to achieve it.

  •  840
    Jelly replied

    Hi,

    Unfortunately, you will need create it with your self, because we don't have anything like this in our template.

    I can't provide for you any hints, because I don't try to do it before.

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    No problem. Thanks all the same.

  •  840
    Jelly replied

    Hi,

    Sorry again, do you still need my help in anything else?

    Best Regards,
    Jelly Team

  •  2
    Loyd Atwood replied

    IS there a page in this template that uses only two columns of equal width? If not, is there a way to easily modify one of the pages into such a layout? I want to do a straight up two column layout for the Bios of different musicians who interact with my client. This page is close to what I seek http://loydster.com/metsa/about.html Can I just markout the quote box and add photos beneath the one photo in the left hand column?

    Also, how do I add Google fonts via Font Face?

  •  840
    Jelly replied

    Hi,

    I think you will need remove the quote and create new div such as you do now. The quote code in below, just remove it, if you don't need it.

    <div class="quote">
      <p>"If I can play one note and make you cry, then that's better than thouse fancy dancers playing twenty notes."</p>
      <p class="author">Paul Metsa</p>
    </div>
    

    To use google fonts, please check this article: https://coderwall.com/p/5vrdkg/google-fonts-using-fontface-in-your-css.

    I think you can use your question on google if you try.

    Best Regards,
    Jelly Team