Okay
  Public Ticket #1098975
color change
Closed

Comments

  •  2
    Jimmy started the conversation

    Please explain exactly where to put the text color change css info.  I see the tags. I want the red text.  Where exactly should it go?

  •  840
    Jelly replied

    Hi,

    You will need put your custom style in: Appearance -> Theme Editor -> Style.css, please put it in the end of the file.

    Also, maybe you can help me know where you want change your color, I will help you do it.

    Best Regards,
    Jelly Team

  •  2
    Jimmy replied

    Thank you, but I do not see a 'Appearance'.  Is that in the main source code? I'm looking on the index page. I want to change the highlite color to red as was possible in the demo. I believe it is pink now? I'm using Dreamweaver cs6.

  •  840
    Jelly replied

    Hi,

    So sorry, I'm misunderstanding your template with wordpress version.

    You can add your custom style in: muziq -> styles -> main.css, please put it in the end of the file.

    Also, maybe you can provide your website address? Are you want change the whole site to red color?

    Best Regards,
    Jelly Team

  •  2
    Jimmy replied

            Yes, the whole site to red.  Just like in the demo, where you can choose between yellow, green, red etc. 

    http://tutone.com/New%20site/index#    is the link.   


  •  840
    Jelly replied

    Hi,

    1. Please add color red in your website:

    <link rel="stylesheet" href="styles/colors/color-red.css">
    

    2. Please add this class in body: palettered.

    It will load the red color in your website. The final code will look like below:

    <link rel="stylesheet" href="styles/main.css">
    <link rel="stylesheet" href="styles/colors/color-red.css">
    <body data-spy="scroll" data-target="#navbar-muziq" data-offset="80" class="palettered">
    

    Best Regards,
    Jelly Team

  •  2
    Jimmy replied

    Thank you, works great!

    Next question;   on the index page there is a small image in the music player. It is originally a prism on a black background. It may be  bg-image3.jpg        What folder is this in?  I want to replace the image.

  •  840
    Jelly replied

    Hi,

    You can change it with the style below:

    #bg-image3 {
        background-image: url(your-image-addrees);
    }
    

    Best Regards,
    Jelly Team

  •  2
    Jimmy replied

    Sorry, that doesn't help.     What folder does the image go in?


  •  2
    Jimmy replied

    Skip that, I found a way to do it.                Could you please explain in detail how to set up the contact form so that it emails to me?


  •  840
    Jelly replied

    Hi,

    You can use contact form default and setup your email in theme option. But you can use contact form 7 if you want style for your form.

    Best Regards,
    Jelly Team

  •  2
    Jimmy replied

    Hello.  I have no idea what that means.  = )               Can you give step by step instructions.  How do I get that form to send to my email?

  •  840
    Jelly replied

    Hi,

    You create a page and setup it look like my page: http://take.ms/8YURH.

    Sorry about the email, you need add your email in: Settings -> General -> Email Address.

    Best Regards,
    Jelly Team

  •  2
    Jimmy replied

    Thank you.      I have the form working, it sends all the info to my mailbox.   The problem is, after the message is sent, the webpage stays one the php page, and does not go back to the contact page or give the "Your Message Has Been Sent!"  formsent message.    What is missing from the php code??                                                                                                                                              

    <?php
    if(isset($_POST['email'])){
      $mailTo = "[email protected]";
      $subject = "Tutone mail from web";
      $body = "New message from website
    <br><br>
    FROM: ".$_POST['email']."<br>
    NAME: ".$_POST['name']."<br>
    COMMENTS: ".$_POST['message']."<br>"; 
      $headers = "To: Jimmy <".$mailTo.">\r\n";
      $headers .= "From: ".$_POST['name']." <".$_POST['email'].">\r\n";
      $headers .= "Content-Type: text/html";
      //envio destinatario
      $mail_success =  mail($mailTo, utf8_decode($subject), utf8_decode($body), $headers);  
    }
    ?> 


  •  840
    Jelly replied

    Hi,

    Maybe you can check our instruction here and correct it:

    Email configuration

    Best Regards,
    Jelly Team

  •  2
    Jimmy replied

    That video resolution is so blurry, I can't read the text!            I did everything in the instructions you posted. You have no send button!     Now the form doesn't do anything. At least it sent before.     Anyone there know how to just make the form that is included in Muziq work??

  •  2
    Jimmy replied

    Tried to put everything back to where it was and now I get this error message when I hit send -     Parse error: syntax error, unexpected '}' in /home/content/92/10406192/html/New site/mail.php on line 32

  •  840
    Jelly replied

    Hi,

    Please give me your ftp information through private reply, I will help you update it.

    Best Regards,
    Jelly Team

  •   Jimmy replied privately
  •  840
    Jelly replied

    Hi,

    I tried, but the login info seem wrong so I can login in your ftp server.

    Status: Connecting to 173.201.140.128:21...
    Status: Connection established, waiting for welcome message...
    Status: Initializing TLS...
    Status: Verifying certificate...
    Status: TLS connection established.
    Command: USER tuto3040
    Response: 331 User tuto3040 OK. Password required
    Command: PASS **********************
    Response: 530 Login authentication failed
    Error: Critical error: Could not connect to server
    Status: Disconnected from server

    Best Regards,
    Jelly Team

  •   Jimmy replied privately
  •  2
    Jimmy replied

    I get this error message when trying to use the form.          Parse error: syntax error, unexpected '}' in /home/content/92/10406192/html/New site/mail.php on line 32

  •  2
    Jimmy replied

    Can you please post the complete code for the mail.php page that works with the contact form included with Muziq?

  •  840
    Jelly replied

    Hi,

    You can get the complete code below:

    <?php
    if(isset($_POST['email'])){
            $mailTo = "[email protected]";
            $subject = "mail from web";
            $body = "New message from web
    <br--><br>
    FROM: ".$_POST['email']."<br>
    NAME: ".$_POST['name']."<br>
    COMMENTS: ".$_POST['message']."<br>";    
            $headers = "To: muziq <".$mailTo.">\r\n";
            $headers .= "From: ".$_POST['name']." <".$_POST['email'].">\r\n";
            $headers .= "Content-Type: text/html";
            //envio destinatario
            $mail_success =  mail($mailTo, utf8_decode($subject), utf8_decode($body), $headers);        
    }
    ?>

    Best Regards,
    Jelly Team