Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • Thread Starter youn

    (@youn)

    hi,

    i an’t provide a link to the website as it is a wip still. but you can preview a screenshot here

    Device : iPhone 5S – iOS 6
    Impacted Browsers :
    – Opera coast for iOS 4.40.93868
    – Safari for iOS
    – Chrome for iOS : 44.0.240367

    Note : i removed all my “css little hacks”

    Thanks

    youn.

    Thread Starter youn

    (@youn)

    hello,

    sorry for the (very) late reply..

    well, now i’m using 1.3.3 and it looks great in Chrome/MBP. Thank you !

    Since i installed Opera Coast (yes : trying to get it as cross-browser/max-devices-friendly as possible):

    – iPhone 5S/Opera Coast => circular images get (vertically) straight on the right. (so : not “real circular”)

    Also, i’m trying to change the image width to make it fit to a smaller screen when needed , but the inline style doesn’tallow me to do that :

    <figure class="grid-gallery-caption" remains with a style="(…) width: 200px;" etc ...>

    (Yes, my images are set to width=”200px” in Admin Panel/Grid Gallery Settings.)

    Do you have any idea how i could achieve that, please ? It would be so great.

    Again , Thank you very much !

    youn.

    Thread Starter youn

    (@youn)

    hello,

    i just updated to the last version – 1.2.8 – nothing else, and my markers came back ! ??
    Thank you !

    Thread Starter youn

    (@youn)

    Hello !
    My fault : i was such in a hurry (my client – a photographer – in a rush) : i haven’t seen Minimatica was a theme.
    I’m going to try it right now.
    Thank you !

    i’m sorry but i don’t know the “one click child theme plugin”.
    i’m used to work my wordpress sites directly in the server….
    so i can’t help you there …

    @banana13 : hello
    I think (but i’m not sure) that you forgot to adapt every (new) id for each box. “id ‘s” are unique you know….In another post i’ve tried to detail the process.

    Is that beacuse I can’t write php in the style sheet

    >>> no you can’t.

    but should make a new php folder?

    >>> neither. just copy IN your child-theme folder the original php file, then you can modify it . don’t forget to respect the original tree ,so, for “discover” theme : root.

    hope it can help

    yes of course, with some css still.
    but your page doesn’t look bad.

    in your style.css, you may add something like this below :

    .box-head {
    margin-top : 1em
    }

    but this will also add a space right after the slider, before the very first row of 4 boxes…

    more detailed info here

    in file “options.php “, don’t forget to change/adpat all “id’s”, ie ex for box n° 5 :

    "id" => "box_head4"

    to

    "id" => "box_head5"

    so you should have something like :

    $options[] = array( "name" => "Homepage Box 5 heading",
    						"desc" => "Heading for homepage box5.",
    						"id" => "box_head5",
    						"std" => "",
    						"type" => "text");
    
    	$options[] = array( "name" => "Homepage Box 5 text",
    						"desc" => "Textarea for homepage box5.",
    						"id" => "box_text5",
    						"std" => "",
    						"type" => "textarea");
    
    	$options[] = array( "name" => "Homepage Box 5 thumbnail image",
    						"desc" => "215px x 130px exact. Upload your image for homepage box 5.",
    						"id" => "box_image5",
    						"type" => "upload");						
    
    	$options[] = array( "name" => "Homepage Box 5 link",
    						"desc" => "Paste here the link of the page or post.",
    						"id" => "box_link5",
    						"std" => "",
    						"type" => "text");

    ok Hello !

    J’ai fait le test chez moi:
    – 8 boxes
    – .title-box h1 { font-size:2em …}

    et ?à marche .

    N’aurais-tu pas ajouté quelque part un “display:block;” et/ou “width:100%” de “trop” ? …

    un lien peut-être ?

    hello,

    it is recommended not to modify an orignal theme, but creating a child theme because if you update the (original) theme you will lose all your modifications. You can find tutorials like this one

    But briefly , inside the folder “wp-content\themes” :
    – create a new folder (ex “my-child-theme”)
    – inside this folder, create a “style.css” file .
    – at the very top of “style.Css” write something like :

    /*
    Theme Name:     My child theme
    Theme URI:
    Description:    Child theme based upon the discover theme
    Author:
    Author URI:
    Template:       discover
    Version:        0.1.0
    */
    @import url("../discover/style.css");

    In your “style.css”, you can override original discover styles

    you should be able to see your new child theme in the admin panel.

    – in your folder “my-child-theme”, you can copy any file from the original “discover” theme, and modify them as you like.

    This is where you will have your (copied) “element-boxes.php” , “”options.php “” …etc ….

    sorry for my bad english, i’m french ??

    hi,

    copy in your child theme the file “element-boxes.php”.
    Change the very first line :

    <?php for ($i = 1; $i <= 4; $i++) { ?>

    to 8 i guess (you want 8 boxes, right ?)

    <?php for ($i = 1; $i <= 8; $i++) { ?>

    then, do the same, ie copy the file “options.php ” in you child theme.
    And update by adding as much as new boxes number :

    $options[] = array( "name" => "Homepage Box 4 heading",
    						"desc" => "Heading for homepage box4.",
    						"id" => "box_head4",
    						"std" => "",
    						"type" => "text");
    
    	$options[] = array( "name" => "Homepage Box 4 text",
    						"desc" => "Textarea for homepage box4.",
    						"id" => "box_text4",
    						"std" => "",
    						"type" => "textarea");
    
    	$options[] = array( "name" => "Homepage Box 4 thumbnail image",
    						"desc" => "215px x 130px exact. Upload your image for homepage box 4.",
    						"id" => "box_image4",
    						"type" => "upload");						
    
    	$options[] = array( "name" => "Homepage Box 4 link",
    						"desc" => "Paste here the link of the page or post.",
    						"id" => "box_link4",
    						"std" => "",
    						"type" => "text");

    i’m not sure but i hope it helps …

    me again,

    sorry but maybe i misunderstood your question.
    you write

    But it seems number 1, and number 5. Are the same.

    In the “amdin panel”, you are able to custom each of those box in ‘Appearence / Theme options / Homepage ”

    hi,

    I think you should try by editing the “element-boxes.php” file, then change the
    <= 4

    in this line (line 1) :
    <?php for ($i = 1; $i <= 4; $i++) { ?> '`

    for whatever you need.

    Be aware that you’ll need to adapt your style.

    Hope this help.

    hi,

    Using the “admin panel”, go to “Appearance / Theme options / custom style ” , and maybe you can try this :

    h1 {
    font-size:2em;
    color: yellowgreen;
    }

    for example.

    Hope this help.

Viewing 15 replies - 1 through 15 (of 15 total)