Home Forums Theme support Remove Slider Frame

Tagged: , ,

This topic contains 20 replies, has 2 voices, and was last updated by  7Theme Support 7 years, 11 months ago.

Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • Hey I got some questions. I’m using Japaneo theme.

    1. Is there a way to remove the Slider frame completely? (cycle-boxed)

    2. Somehow “custom background” and also “background color” are not working for a single page. I can only use it for the whole theme.

    3. Is there a way to change the text color of only one subpage?

    4. Is there a list of all shortcodes?

    Thank you!

    Hi Felix,

    1. Normally if there isnt choose a slider for the page there should not be a frame of the slider (Page options in the settings box below the slider when you edit a page -> slideshow tab)

    2. This option is only working if you’ve not set a background for the sections (header, main, footer). This option will overwrite only the default body background. If this is not working the please send us (info @ 7theme . net) the link to you website, then we can take a look at it.

    3. You can take a look at the source code, all pages have a unique classname, for example …body class=’ … postid-1234 … ‘, with this selector you can add a custom color for only this page

    4. No, normally all shortcodes in the theme are in the shorcode generator (button in the editor when you edit a page)

    I’m sorry I didn’t explain that right.

    1. The problem is I have a Slider, and I want the slider, but without the white frame.
    As well I’d like to remove the white frame in my gallery pictures. Is that possible?

    2. Ok:)

    3. I don’t get that. Can you explain it to me?

    4. perfect!

    Thank you!

    1. Go to wordpress admin -> Appearance -> Theme Options -> General -> Extra CSS Content and add this css code:

    #cycle_header img {
    padding:0 !important;
    background-color:transparent;
    }

    3. What you dont get? The source code? It’s the code of your website, you can see it when you hit the controll key on your keyboard + the “u” key (in google chrome)

    Ok. I removed the slider frame. Thank you.
    I found the ID but I don’t know how to change background color and font color if I have the id. What do I have to change?

    How do I remove the white frame for Gallery Pictures?

    You can use this css selector:

    body.postid-12345 {
     color:#ffcc00;
     background:#000;
     ...
     ...
    }

    Just replace “-12345” in the css code above with the id you can find in the source code.

    I’m sorry. Where should I type that in?

    Can I remove the frames of the pictures in gallery?

    You can add the code in wordpress admin -> Appearance -> Theme Options -> General -> Extra CSS Content.

    To remove the white frame for the gallery images, please add also this code (in custom css content, see path above):

    .portfolio-itemlist-col4 img, .portfolio-itemlist-col3 img, .portfolio-itemlist-col2 img, .portfolio-itemlist-col1 img {
    padding:0 ;
    }

    Hey:)
    Thank you! Picture frame is gone, perfect!

    But the thing with changing background didnt change anything:(

    Can you post the code you’ve insert for the background in the custom css field, or send us the link to the page with the custom background?

    Link: http://luclac.onlight-productions.com/speisekarte

    I entered:
    body.postid-28 {
    color:#ffcc00;
    background:#000;
    }

    Where can I send you private Messages?

    Hi,

    sorry, my fault, it’s not working because it’s a page. You have to add this code:

    body.page-id-28 {
    color:#ffcc00;
    background:#000 !important;
    }

    Ok. Perefect! That worked for me!

    How can I change the font color to #AE9A64 (RGB 174,154,100)?

    Tried to change “color” but that didn’t help…:(

    You have to add this:

    body.page-id-28 #content {
    color: #AE9A64;
    }

    When you set a color in the theme options for the main section, then you cant overwrite it, with the code above it’s possible

    Ok. Cant test it now:(
    By clicking “save” after css content it always says “error”.

    Do you know why?:(

Viewing 15 posts - 1 through 15 (of 21 total)

You must be logged in to reply to this topic.