All kinds of issues

Discussion in 'Poloray WordPress Theme' started by heidih, Aug 19, 2013.

  1. heidih

    heidih New Member

    Joined:
    Jun 11, 2013
    Messages:
    6
    Likes Received:
    0
    Hi - I've been using you themes for a while but I'm new to Poloray. I'm having quite a few issues and getting frustrated. If I can't fix them, can I please change to another theme that will be easier for me?

    Issues:
    1. Paragraph Breaks - I read other posts and learned that I need to put in a <br> to create a paragraph break. I've done this about 10 times on the same page. Each time I go back to the Visual view (which is what I use) the <br> delete themselves. Surely there is an easier way to create paragraph breaks other than having to add HTML outside of the WYSIQYG type editor.

    2. Bullet Points - just don't show up. I've used both the Visual and HTML options in Text. Nothing.

    3. Change font - I've updated my Custom CSS as per instructions from other threads and no change to my font type happens.

    Is there another similar theme that is easier to use? I've used Squirrel before with great success - all of the features seem to work. If not, and if these issues can't be easily resolved - can I please get a refund for this theme as I'm now spending too much time on something that should be very very simple.

    Thank you.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. For your first issue,
    This is not the issue of our theme, i know that the line break tag (i.e. <br>) are disappear when you go back to the Visual view but remain have their functionality to break the line,
    you can see this by clicking on the view page button underneath the title section.
    <br> tag works like this in all themes, even with the wordpress default theme.
    Or
    You can also break the line by using Shift + Enter button in the text editor, this will also work perfectly to break the line.

    2. For the bullet point issue,
    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    li {
    margin-left: 16px;
    }
    This will solve your bullet point issue.

    3. For your font issue,

    Go to js > custom.js present in your theme directory and remove the code given below


    Code:
    //Cufon replacement
    Cufon.replace('h1',{hover: true})('h2',{hover: true})('h3',{hover: true})('h4',{hover: true})('h5',{hover: true})('h6',{hover: true})('.contentbtn')('.content_info')('.readmore',{hover: true})('.submit',{hover: true});
    

    Now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1,h2,h3,h4,h5,h6,a{
    font-family:symbol!important;
    }
    p{
    font-family:symbol!important;
    }
    Inplace of "symbol" you can put your font type.

    This will solve your issue.
     
  3. heidih

    heidih New Member

    Joined:
    Jun 11, 2013
    Messages:
    6
    Likes Received:
    0
    Hi thanks. I've been able to adjust the font and get the bullet points to work. However - the font on the bullet list is still the default font. Can you help there please?

    And no matter what I do I can't seem to get paragraph breaks. Have a look - http://nlpworldwide.com/wordpress/about-us/ - I'm using the shift+enter and it looks fine on the editor but doesn't change on the live site.

    Thanks again for your help.
     
  4. heidih

    heidih New Member

    Joined:
    Jun 11, 2013
    Messages:
    6
    Likes Received:
    0
    Also - Im not sure what the default font size is, but it looks really small. Can I make the normal text a min of 10pt?
     
  5. heidih

    heidih New Member

    Joined:
    Jun 11, 2013
    Messages:
    6
    Likes Received:
    0
    One other thing - I don't seem to have Headings 1 or 2 as options, just 3, 4, 5 and 6. Is this right?
     
  6. heidih

    heidih New Member

    Joined:
    Jun 11, 2013
    Messages:
    6
    Likes Received:
    0
    Hi - wondering if you are still able to help me? - since changing the font my image on the homepage is not in the right place - www.nlpworldwide.com/wordpress
     
  7. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

    Hello,

    To change the font of list text, paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar ul li {
    font-family: symbol;
    }
    
    Inplace of "symbol" you can put your font type.


    You have given the link of a weibsite which is not using our Theme.
    We have checked paragraph breaks issue again using the shift+enter with the Poloray Theme
    and it is working fine in both editor as well as live site.
     
  8. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar ul li {
    font-size: 15px;
    }
    .content-bar p {
    font-size: 15px;
    }
    You can adjust the value of "font-size" as per your requirement.
    This will solve your issue.
     
  9. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

    Hello,

    Go to functions.php present in your theme directory and remove the code given below

    Code:
    function change_mce_options( $init ) {
    $init['theme_advanced_blockformats'] = 'p,address,pre,code,h3,h4,h5,h6';
    $init['theme_advanced_disable'] = 'forecolor';
    return $init;
    }
    add_filter('tiny_mce_before_init', 'change_mce_options');

    Sending image for reference

    [​IMG]


    This will solve your issue.
     

Share This Page