Viewing 10 posts - 1 through 10 (of 10 total)
  • Posted in: Clique
  • #287776
    theFencer
    Member
    Post count: 27

    Hi, some infos:
    1-does Clique support child theme?
    2-How can I change the logo dimension?
    3-I tried to copy the structure of your demo, but I didn’t succeeded… I copied the setting in the theme option box and restored the xml. Can you help me please?

    The site stated above is a develop version, I just backed up the db and you can make all the changes you have to do.

    Thanks!

    #288001
    David Martin – Support
    Moderator
    Post count: 20834

    1) Yes, all WP theme do.

    2) You can add this to Theme Options => General Options => Custom CSS

    #logo img {
        max-height: 155px;
        width: auto;
        height: auto;
    }

    3) Are you sure the XML file imported? I see no demo content?

    Thanks.

    #288763
    theFencer
    Member
    Post count: 27

    Thank you David,

    1) Ok (yes, it was a stupid question!)
    2) Doesn’t change anything!
    3) Yes I did. But the problem is not the content, I just wish to use the same layout. I thought it was something about the Theme Options => Transfer Theme Options Data
    4) (new question) What about fixing the number of portfolio items in the homepage (i.e. 2 rows of 3 cols)?

    #288962
    David Martin – Support
    Moderator
    Post count: 20834

    2) Your CSS is working, what size do you want the logo though?

    3) Your layout is the same as the demo,is there something specific I’m missing?

    4) There is not an option to adjust the columns. You would need to edit the JS file. Locate js/functions.js.php and find this:

    	returnSize: function() {
    		var itemColumns = 1, windowWidth = $j(window).width();
    		return windowWidth >= 380 && windowWidth < 480 ? itemColumns = 2 : windowWidth >= 480 && windowWidth < 768 ? itemColumns = 2 : windowWidth >= 768 && windowWidth < 1160 ? itemColumns = 3 : windowWidth >= 1160 && windowWidth < 1640 ? itemColumns = 4 : windowWidth >= 1640 && windowWidth < 2100 ? itemColumns = 5 : windowWidth >= 2100 && (itemColumns = 6), itemColumns;
    	},

    You will see multiple references to this itemColumns = there you can change the number of columns for each screen size.

    Thanks

    #288970
    theFencer
    Member
    Post count: 27

    Hi David,

    2) I tried using 512px (and changed the image accordingly) but nothing happened…
    3) It’s ok for the portfolio home page, I wanted to use the demo layout also for the blog (news in my site).
    4) ok

    Thanks.

    #288981
    David Martin – Support
    Moderator
    Post count: 20834

    2) In width or height? You are limited to the container dimensions to an extent.

    3) Sure, to use that layout do not set this as the blog post page within the Settings => General. I have removed that from you.

    #288993
    theFencer
    Member
    Post count: 27

    Oh, I see, now it’s almost perfect, thank you.
    Just some fine tuning.
    If you go to the homepage=>i nostri maestri (should be the third portfolio), you’ll se I used accordion.
    It’s very strange, but the text disappear (it’s white on white). Is a css problem? Should I fix the text color inside the text itself?
    Moreover, in that same portfolio, there is a way to start it with the accordion collapsed (closed)?

    #288997
    David Martin – Support
    Moderator
    Post count: 20834

    Please use this to change the color of the active text:

    .accordion .accordion-header.ui-state-active {
        color: #222!important;
    }

    Currently this is not possible to set certain accordions open.

    Thanks.

    #289201
    theFencer
    Member
    Post count: 27

    Should I put it in the usual place (custom css)?
    If it’s so, nothing changed.

    #289233
    David Martin – Support
    Moderator
    Post count: 20834

    The color is for the accordion title which are working fine.

    For the accordion content you will want:

    .accordion .accordion-body {
        color: #222;
    }
Viewing 10 posts - 1 through 10 (of 10 total)

You must be logged in to reply to this topic.