Forum Replies Created

Viewing 20 posts - 10,681 through 10,700 (of 14,509 total)
  • Author
    Posts
  • in reply to: Quote Rotator #14127
    Sakin
    Keymaster

    @martyn: You can work on with child theme and them add option to accept shortcode. We cannot do that for parent theme.

    in reply to: Update #14123
    Sakin
    Keymaster

    @ashrafashraf: Child theme will work in updated version as well. But in you are upgrading from Free to Pro version then you need to edit the Template in child theme.

    in reply to: Mobile sizes- slider title to run full width #14122
    Sakin
    Keymaster
    in reply to: Different background colors for different widgets #14121
    Sakin
    Keymaster

    @youngwings: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #secondary #blog_subscription-7.widget { background-color: #f9fdc3; }

    in reply to: Big images with rss #14120
    Sakin
    Keymaster

    @Bill Pagonas: Changing the image in the function will not work as the image you are importing is small size.

    So, you might consider add the css to change the container width.

    .post .post-thumb {
        width: 22%;
    }
    .post .post-article {
        margin-left: 4%;
        width: 74%;
    }
    in reply to: Quote Rotator #14116
    Sakin
    Keymaster

    @martyn: Sorry for security reason that homepage featured content will not accept the shortcode. Let me contact you though email so that I can check the plugin in your site.

    in reply to: Increase page heading size #14115
    Sakin
    Keymaster

    @oly: Ok then use the following CSS.

    @media screen and (min-width: 960px) {	
    #main .entry-header .entry-title { font-size: 50px; }
    }
    in reply to: Remove image borders from widgets. #14112
    Sakin
    Keymaster

    @Sonia: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .widget-area .widget img { border: none; }

    in reply to: Disable featured post slider at some pages #14111
    Sakin
    Keymaster

    @Teedok: For pages you can take page id and for post you can take post ID. For example the page “Informace k závodu” Id is 2 so it will be as below:

    .page-id-2 #main-slider { display: none; }

    in reply to: Increase width of main slider title box #14110
    Sakin
    Keymaster

    @oly: Yes you can do that with media screen.

    /* For screen less then 960px */
    @media screen and (max-width: 960px) {	
    #main-slider .entry-container { max-width: 100%; }
    }
    in reply to: Increase page heading size #14109
    Sakin
    Keymaster

    @oly: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 960px) {	
    .entry-header .entry-title { font-size: 50px; }
    }
    in reply to: Disable featured post slider at some pages #14091
    Sakin
    Keymaster

    @Teedok: Then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide the slider in main page.
    .home #main-slider { display: none; }

    in reply to: Increase page heading size #14085
    Sakin
    Keymaster

    @oly: Sorry I cam bit confused which page heading you are talking about. Can you explain it or share screenshot.

    in reply to: Quote Rotator #14083
    Sakin
    Keymaster

    @martyn: Sorry I don’t know about that plugin much. they said that have shortcode. You can add that. Also for plugin, it’s better to ask plugin author as we don’t know about that plugin code.

    in reply to: Increase width of main slider title box #14080
    Sakin
    Keymaster

    @oly: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. This will make the container max with 60% and it depends on the need of the tile.
    #main-slider .entry-container { max-width: 60%; }

    in reply to: Disable featured post slider at some pages #14079
    Sakin
    Keymaster

    @Teedok: You can hide it for those pages thorough css. Send me the pages for which you have to hide it then I will send you the custom css.

    in reply to: Add seperate blog #14078
    Sakin
    Keymaster

    @bamrider: Maybe separate with the category.

    in reply to: Extra image slider with tumbnails #14077
    Sakin
    Keymaster

    @Frans: You can use the same slider to all page from “Appearance => Theme Options => Featured Slider => Slider Options”

    in reply to: Menu Bar Lines and Menu Text Bold #14076
    Sakin
    Keymaster

    @Dave39713971: Not sure about that. But let’s try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding ul.menu li { display: inline-block; float: none; }
    #branding #access { text-align: center; }
    #branding ul.menu ul a { text-align: left; }
    in reply to: center navigation #14075
    Sakin
    Keymaster

    @daenuu: This is more complicated. You should consider hiring CSS Developer. I have come up with the CSS. But I am not sure it will work or not. Try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #access ul {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    #access ul li {
        display: inline-block;
        float: none;
    }
    #access ul li a { float: none; }
    #access ul li ul li {
        display: block;
        float: left;
        width: 100%;
        text-align: left;
    }
    #access ul li.default-menu { display: none; }
    @media screen and (max-width: 767px) { #access ul { display: none; text-align: left; }  }
Viewing 20 posts - 10,681 through 10,700 (of 14,509 total)