Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Bullet point

    #11296

    the image used is actually part of a sprite image. It’s much easier to just save the image using whatever name you wish and then link it using CSS in a child theme

    Admin

    In reply to: How to modify the theme using a child theme

    #10847

    To target elements on the home page only using css, prefix the elements’ selector with the .home class. Example:

    .home div.type-page div.entry h2{display:none;}
    Admin

    In reply to: Remove RSS Icon from Theme

    #11300

    Using a child theme, add this code inside your child theme’s style.css file:

    #rss{
    display:none;
    }
    Admin

    In reply to: Sidebar Menu Possible?

    #11289

    Hi Leah,

    You would have to use CSS and child theme to do that modification.

    To hide the top menu is quite easy. Just add the following code into your child theme’s style.css file:

    #nav{
    display:none;
    }

    To move the sidebar to the left:

    #content-main{
    float:right;
    }
    #sidebar-right{
    float:left;
    margin-right:0;
    margin-left:15px;
    }
    #content{
    background-position:-1560px top;
    }
    Admin

    In reply to: Sidebar width

    #11299

    Hi Rati,

    You would have to use CSS codes and child theme to do the changes you mentioned.

    Admin

    In reply to: Bullet point

    #11293

    Hi,

    By default, the colour of the bullet point follows the colour of the text. To use any other custom bullet points other than what’s included by default in CSS (disc, circle, roman numerals, etc.), one would have to use an image and set that as the default bullet point instead. This is what I did in the theme, so the blue square bullet point you see is actually an image.

    Two ways you can change the colour of the bullet point:

    1. Edit the current bullet image

    2. Revert back to any bullet style included by default

    3. Use your own custom image as the bullet

    Note that for option 2, the colour of the bullet will follow the colour of the text, so in order to change the colour of the bullet, you will have to change the colour of the text.

    Let me know which option you wanna go with and I can help you further.

    Admin

    In reply to: More columns on pages option?

    #11286

    @Dave:

    I probably won’t be adding any more column to the pages. As it stands now, even with just 2 columns (the content and the sidebar) the width of the content area is already quite small. Adding another column will just crowd the page (unless the width of the sidebar is downsized), and making the content area even smaller.

    @istrategy:

    I wouldn’t recommend using table for layout. For semantic markup purposes, use table only for tabulated data, such as a timetable or a list of items in a shopping cart. Use floating divs instead.

    Admin

    In reply to: Slider Image

    #11018

    @Ulrika:

    As of the current version of the theme, the only way to insert video into the slider and/or not have it display any images at all is by doing customisation, ideally through a child theme. You can just simply hide the slider image using CSS.

    If you want to put video into the slider, you can use several action hooks that’s located in the Slider. Note though that this is pretty difficult to achieve if you’re not already familiar with WordPress Action Hooks and PHP.

    Admin

    In reply to: Slider Image

    #11017

    Yep, I do intend to do that. See post #355 in this thread. It would take some time though. I have very little free time at this time of the year.

    Admin

    In reply to: Move slider to bottom

    #11278

    Hurm…that makes sense..

    I’ll consider this.

Viewing 10 posts - 5,881 through 5,890 (of 6,030 total)