To insert code use <code>...</code>.
missing css file ?
  • hi
    i am trying to convert the theme in to RTL
    but i can't find any css file
    when i am trying to do it throw the WP editor
    i get only this in the css files :

    /*
    Theme Name: Striking
    Description: Designed by Kaptinlin.
    Follow KaptinLin on Twitter for the updates.
    Get support from Forum.
    Author: Kaptinlin
    Version: 5.1.7
    Author URI: http://themeforest.net/user/Kaptinlin
    */

    this is my site : http://www.latour360.com/
    any ideas what i am doing wrong ?
    thanks
    uv
  • 12 Comments sorted by
  • ok, i found the style.css
    hope it's sloved
  • Hi uvresh,

    you do not need the style.css striking has a custom css field in the general settings in which you can override any css code from the style.css


    Best regards,
    BackuPs
  • ok, so in order to change directions in my homepage for exemple, i need to find the css code for it, and put it in the custom field ? i will appreacite any advice on how to change the theme to RTL
    thanks alot
    uv
  • Yes just put custom your code in the custom css field. thats correct. For RTL just add the rtl dir to your body css i guess and put it in the custom css field.

    There was a question abouth this a few months ago. .....


    body {direction:rtl;}


    Best regards,
    BackuPs
  • i understand i have to put the right css code in the custom field in order to change my homepage to RTL, but i can't find the right line that refer to homepage in order to change it and then put it in the custom field
    i just want to put my logo in the right side and the navigation bar on the left
    and then put the icons ( like those in the demo content ) to the right side of the headings.
    i know it's my lack of css skills, but i'll appreciate any exemple.
    i tried to find info about it in the forum, but could'nt find it.
    thanks
    uv
  • Uvresh,

    This does not make any sence to me. You ask for the RTL which means tekst being displayed from right to left as in hebrew....

    Then you want it on the home page? Only in that page? Or thoughout the website?

    Then you want the navigation on the left?

    The ,logo to the right?

    Please define step by step what you want. The logo cannot goto the right in this theme Only if you insert a logo in the html section on the rightside of the header by custom css code and a transparent background logo in the logosection on the left.

    the body text to the right. add this to the custom css field


    body {direction:rtl;}


    the menu to the left?

    #navigation {
    bottom: 0;
    left:0px;
    height: 62px;
    }


    You need to adjust the height for it fits your website needs.

    Best regards,
    BackuPs
  • first, thanks alot for your help
    i need the rtl for the whole website
    , but i just thought i can change only the pages i going to use
    buttom line, i need to change the whole theme
    appreaciate your support
    uv
  • just add the code above into the custom css field of striking.
  • it's worked, thanks alot
    i am just left with 2 issues :
    - i have the same homepage as in your demo site, but i want to move the small icons to the right of the heading. not sure how to do it.
    - need to move the head sections in the sortable portfolio ( video, image' ect..) to the right.
    appreciate your great support
    uv
  • Hi Uvresh,

    just swap the columns to have the icons on the right. There is demo code which came with your theme. Setup a testblog import the content and you can see how it is done. Now swap the columns. so instead of 1/5 and 4/5 columns you should use 4/5 and 1/5 columns and insert the content. Aligning a picture to thr right can be done in wp itself.

    i do not understand you second question/

    Best regards,
    BackuPs

  • my second question : in the upper left side of the sortable portfolio there are boxes that are used as sub categories for the portfolio ( show : document' video, images, ect..)
    how can i move it to the right side of the portfolio ?
    thanks alot
    uv
  • Hi
    Try custom css code below
    #page .portfolios.sortable header a, .portfolios.sortable header span {
    float: right;
    }


    Regards,
    KaptinLin