Search Results for 'display'

  • Author
    Search Results
  • #44196
    Zed
    Cryout Creations mastermind

    Try

    #nav-below {
       display: none;
    }
    • This reply was modified 8 years ago by Zed.

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #44194
    Zed
    Cryout Creations mastermind

    The featured boxes require featured images set for these to be displayed.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #44192
    Zed
    Cryout Creations mastermind

    The theme has the ability to display a header image for all pages (or posts) that have featured images set. This is controlled from the theme’s Featured Image options.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #44189
    Zed
    Cryout Creations mastermind

    In Fluida icon blocks display individual pages while featured boxes display posts (all or from a specific category).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #44176
    Zed
    Cryout Creations mastermind

    Responsiveness doesn’t correct for how you choose to display things (by setting a font that makes your menu too wide to fit in the available space).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #44166
    Zed
    Cryout Creations mastermind

    The .mobile class is added via JS, so it is not present from the first instant.

    I suggest you use media queries in your css to target mobile devices:

    @media (max-width: 800px) {
        body #header-container { display: none; }
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #44052

    or…if you want the “best” of the two worlds, this works for me:

    /* MENU FIX for FLUIDA  */
    @media (max-width: 1240px) {
    #masthead.cryout #access {display: none;} 
    #masthead.cryout #nav-toggle {display: block;} 
    #masthead.cryout #sheader {display: none;} 
    }
    
    @media (max-width: 1440px) {
    #masthead.cryout #access {font-size: 0.8em;} 
    }
    #44043

    While Zed is studying on a way to improve “long menus” display on desktop low resolution screen (or small window)
    please feel free to try this CSS code (put it in your custom css file o in the “customize theme/custom CSS” section:

    /* MENU FIX for FLUIDA */
    @media (max-width: 1440px) { /* change 1440px into your needed max-width */
    	#masthead.cryout #access {display: none;} /* hides the full textual menu */
    	#masthead.cryout #nav-toggle {display: block;} /* display the mobile menu (stack icon) */
    	#masthead.cryout #sheader {display: none;} /* hides the social menu, remove this line if u don't have it on the main menu */
    }

    OBVIOUSLY change 1440px into a resolution which acts as limit for your menu
    (think of it as “if my maximum width is XXXXXpx, then switch the full menu into mobile menu)

    • This reply was modified 8 years ago by tamerlaneunreal.
    • This reply was modified 8 years ago by tamerlaneunreal. Reason: improved code readability
    • This reply was modified 8 years ago by tamerlaneunreal. Reason: added comments
    #43918

    In reply to: Hide meta

    I use this code :

    .main .entry-meta span, .entry-utility span {
    display: none !important; }

    but all meta in post disepeared also

    #43860

    Thank you for helping on Sunday!!

    Sorry but I don’t get it… I tried

    h3#custom-title,
    #front-text1 h2,
    #front-text2 h2,
    #front-text5 h2,
    #front-columns h2 {
    	display: block;
    	float: none;
    	margin: 0px auto;
    	font-size: 45px;
    	line-height: 55px;
    	clear: both;
    	font-weight: 300;
    }

    as well as

    h3#custom-title h3,
    #front-text1 h2,
    #front-text2 h2,

    as well as

    h3#custom-title h2,
    #front-text1 h2,
    #front-text2 h2,
    #front-text5 h2,
    #front-columns h2 {
    	display: block;

    as well as to separate it to

    h3#custom-title h3 {
    	display: block;
    	float: none;
    	margin: 0px auto;
    	font-size: 45px;
    	line-height: 55px;
    	clear: both;
    	font-weight: 300;
    }

    but the custom-title does not change for one single pixel…

    In Firefox console I can adjust font-weight for h3.custom-title but it seems to belong to #pp-afterslider h3 and that is where I get stuck in CSS…

    Website: www.weltangucker.de

    • This reply was modified 8 years ago by Klaus.
    • This reply was modified 8 years ago by Klaus.
    #43852
    Zed
    Cryout Creations mastermind

    Nirvana uses placeholders instead of labels in the comment form. Use this CSS to restore labels:

    .woocommerce #respond label {
        display: block;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43847

    In reply to: layout

    Zed
    Cryout Creations mastermind

    The theme’s presentation page does not display sidebars.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    You can do that with CSS:

    body.single #nav-above, #nav-below {
        display: none;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43842

    So the Sample Title appears at the right place. But I cannot amend styling. My idea was to add #custom-title to the existing list in style.css as styling already exists

    Existing CSS

    #front-text1 h2,
    #front-text2 h2,
    #front-text5 h2,
    #front-columns h2,
    {
    display: block;
    float: none;
    margin: 0px auto;
    font-size: 45px;
    line-height: 55px;
    clear: both;
    font-weight: 300;
    }

    amended CSS

    #front-text1 h2,
    #front-text2 h2,
    #front-text5 h2,
    #front-columns h2
    #custom-title h2,
    {
    display: block;
    float: none;
    margin: 0px auto;
    font-size: 45px;
    line-height: 55px;
    clear: both;
    font-weight: 300;

    Unfortunately it doesn’t work. Where am I wrong?

    Website: www.weltangucker.de

    • This reply was modified 8 years ago by Klaus.
    #43795
    Zed
    Cryout Creations mastermind

    @newy219, are the theme’s post options set to Excerpt or Full Posts (under Post Excerpt Settings)?

    The theme only displays thumbnails when the excerpts are enabled (which appears to not be the case based on the HTML markup used, despite the presence of the continue reading button).


    @gardensidestudio
    , the columns will only display posts that have featured images set (the images are required in the columns).
    Featured images are not displayed on full posts (the situation where images in content would also be visible).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43695

    Something very odd going on. I’ve don’t have a plugin for it, and I’m using your theme and the override for displaying it needs to be placed in the functions.php file.

    My other blog, using default twenty fifteen theme, and no plugins (as I don’t use excepts at all on that blog) doesn’t display excepts, but it’s there in the screen options drop down to enable!

    #43683
    Zed
    Cryout Creations mastermind

    @mikah257, check if the static page you’re setting as the homepage has a template assigned. If it does, the landing page will be disabled and only the static page content will be displayed.

    Edit: This is no longer the case in Septera.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43675

    In reply to: Header image

    Zed
    Cryout Creations mastermind

    By default the theme’s landing page doesn’t display the header image but a separate distinct image (also configurable in the theme’s options) placed in the slider’s location. We call this the static slider image and it’s under the theme’s landing page > slider options.

    For all other sections of the site the header image is displayed accordingly.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    You can try hiding the site title when it no longer fits in:

    @media (max-width: 525px) {
         #branding #site-text { display: none; }
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43657
    Zed
    Cryout Creations mastermind

    The widgets that are used in the sidebars are responsible for displaying a widget title (be it the menu title or custom text) or not. The theme cannot manipulate widget content.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43642
    Zed
    Cryout Creations mastermind

    Your featured images were generated at about 150px width but are now displayed at 250px width so it looks like you’ve changed the theme’s featured image size values since the images were uploaded to the site.

    You mention installing a thumbnail regeneration plugin, but do not mention using it to actually regenerate the thumbnails.
    My personal choice is this plugin, which once installed will add a separate section under Tools from where you can trigger the images regeneration process.

    By the way, thanks for crediting our work.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43635

    Hello Zed 🙂

    Thank you for the reply!

    I tweaked the settings in JetPack and it helped a bit.

    I now have these two selected:

    “Excerpts
    On: Enable excerpts on front page and on archive pages”

    And

    “Featured images
    On: Display featured images”

    The menu is now showing (full, not the burger menu), and the front page is correct with excerpts and featured images, so that helped ALOT!

    But still, I don’t have that burger menu, so it still looks funky – Any ideas?

    Best!
    Line 🙂

    Website: www.medeno.dk

    #43631
    Zed
    Cryout Creations mastermind

    The theme doesn’t have an option specifically for this change, but it can be done with custom CSS:

    @media (max-width: 650px) {
      .content-masonry .comments-link { display: none; }
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43505
    Zed
    Cryout Creations mastermind

    The author block appears when the author has something entered in its bio field (in the settings). You can disable it by leaving the bio empty or you can hide it with CSS:
    article #author-info { display: none; }


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43495
    Zed
    Cryout Creations mastermind

    The theme’s landing page is not designed to display sidebars.

    You can insert sliders in a standard (static) page using shortcodes, which will follow the theme’s layout option and display sidebars (if set to).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.

    HI @raftingbatu thanks for that that helps however it also display 2 FF on the Tab in the browser and it looks completely wrong. Is there any other way?

    Website: dsfp.annagaudia.uk

    #43428
    Zed
    Cryout Creations mastermind

    The continue reading button is displayed when posts in lists (homepage, categories, archives) as set to be displayed as excerpts, not full posts.
    You could switch the posts to full posts (from the theme’s options) to turn it off, or change its label to nothing (from the theme’s options as well).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43400
    Zed
    Cryout Creations mastermind

    Looking at your site now the date is visible, so I assume you managed to find the theme’s settings controlling what meta information is displayed.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43385
    Zed
    Cryout Creations mastermind

    You have some custom styling that’s too general and applies to the pagination:

    /* Our css Custom Options values */
    	@media only screen and (max-width:479px){
    	...
    		nav{
    			display:none!important;
    		}

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #43360

    In reply to: Excerpt on pages

    Zed
    Cryout Creations mastermind

    Pages do not have excerpts (normally) in WordPress.

    The theme permits you to display an automatically shortened intro from page contents or the complete page content. However the areas using pages as source of information are designed for displaying small bits of content and not full pages of text.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 30 results - 781 through 810 (of 1,618 total)