Search Results for 'display'

  • Author
    Search Results
  • #62104

    In reply to: Mystery hyphen

    Zed
    Cryout Creations mastermind

    That hyphen is the separator between your site title and tagline, which the theme normally displays in the title tag but which you left empty in WordPress’ general settings.

    Either fill in the title and tagline in the settings or use a SEO plugin to customize the title that your site should display to browsers on the homepage.


    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

    Nirvana can display either the site title, the logo or none of them. It cannot display both the logo and the site title simultaneously (this is a feature we’ve added in our newer themes only).

    An alternative would be to include your logo in the header image and then display the title on top.
    The theme does provide some control over the title’s placement (using the header left/top margin options), but this workaround may need some additional CSS to make it work for all browsers and screen sizes.


    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.
    #62101
    Zed
    Cryout Creations mastermind

    Nirvana displays featured images in posts lists (blog, categories, archives, search results). It does not display the featured images in single views (single post or single page).

    If you’re looking to display the featured image in the header in single views, check that the appropriate option (under the theme’s Featured Image options section) is enabled.


    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.
    #61809

    In reply to: Gallery ?

    hi,
    On an article in French, as I am French, I found this for galleries.
    https://wpchannel.com/wordpress/tutoriels-wordpress/support-galeries-wordpress-html5/
    – A well-coded theme must have the following line of code for effective support of image galleries:
    add_theme_support('html5', array('gallery'));

    The presence of this line will have the effect of using the figure tag. In case of absence, WordPress will use dl and dt tags and will add inline the following code tip:

    <style type='text/css'>
    	#gallery-1 {
    		margin: auto;
    	}
    	#gallery-1 .gallery-item {
    		float: left;
    		margin-top: 10px;
    		text-align: center;
    		width: 33%;
    	}
    	#gallery-1 img {
    		border: 2px solid #cfcfcf;
    	}
    	#gallery-1 .gallery-caption {
    		margin-left: 0;
    	}
    	/* see gallery_shortcode() in wp-includes/media.php */
    </style>

    In other words, it is not very optimal! If you develop your own themes, respect these good practices but if you pick up a premium theme you can simply filter the whole to disable adding CSS inline with:

    /* Removing Default WordPress Syles for Galleries */
    add_filter('use_default_gallery_style', '__return_false');

    For my part, here is the CSS code that I included in my basic theme:

    .gallery {
    	margin: 0 -1.1666667% 1.75em;
    }
    .gallery-item {
    	display: inline-block;
    	max-width: 33.33%;
    	padding: 0 1.1400652% 2.2801304%;
    	text-align: center;
    	vertical-align: top;
    	width: 100%;
    }
    .gallery-item a {
    	display: inline-block;
    }
    .gallery-columns-1 .gallery-item {
    	max-width: 100%;
    }
    .gallery-columns-2 .gallery-item {
    	max-width: 50%;
    }
    .gallery-columns-4 .gallery-item {
    	max-width: 25%;
    }
    .gallery-columns-5 .gallery-item {
    	max-width: 20%;
    }
    .gallery-columns-6 .gallery-item {
    	max-width: 16.66%;
    }
    .gallery-columns-7 .gallery-item {
    	max-width: 14.28%;
    }
    .gallery-columns-8 .gallery-item {
    	max-width: 12.5%;
    }
    .gallery-columns-9 .gallery-item {
    	max-width: 11.11%;
    }
    .gallery-icon img {
    	margin: 0 auto;
    }
    .gallery-caption {
    	color: #686868;
    	display: block;
    	font-size: 13px;
    	font-size: 0.8125rem;
    	font-style: italic;
    	line-height: 1.6153846154;
    	padding-top: 0.5384615385em;
    }
    .gallery-columns-6 .gallery-caption,
    .gallery-columns-7 .gallery-caption,
    .gallery-columns-8 .gallery-caption,
    .gallery-columns-9 .gallery-caption {
    	display: none;
    }

    I pointed out to the author of the Post, that he was missing
    . Gallery-Columns-3. Gallery-Item
    In its code for style. css
    But maybe it can help.

    Website: gallery,%20style.cs

    #61353
    Zed
    Cryout Creations mastermind

    When the theme’s Featured images in the header option is enabled in the options, the theme will display the posts’ / pages’ featured images in the header (even instead of the site-wide header image) if the featured images are large enough (at least 75% of the configured site width and image header height).


    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.
    #61335
    Zed
    Cryout Creations mastermind

    Both on mobile devices and on desktop browsers you have to click the arrow indicates to open the submenus. That’s how the theme is designed to work.

    On mobile devices, the main navigation turns into the mobile menu (displayed by clicking/tapping the hamburger icon). This icons (and the menu) appear to be properly displayed on your entire site. Which pages/sections are you missing it on?


    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.
    #61328
    Zed
    Cryout Creations mastermind

    Different responsiveness features cannot be disabled independently.

    How should the main navigation be displayed on the smaller mobile devices (under 720px when it no longer fits in one line)?


    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.
    #61323
    Zed
    Cryout Creations mastermind

    The post title in a single post section uses the H1 tag.
    Post titles in a posts list (which the homepage is) use the H2 tag. On the homepage the H1 tag is used only by the site title (which natura-medioambiental.com does not display).


    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.
    #61311
    Zed
    Cryout Creations mastermind

    The theme displays the assigned featured image in lists (categories, archives, search results).

    For the single views (single post or single page), images can be inserted directly in the content (at the desired location and with the wanted size).


    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.
    #61078

    In reply to: Gallery ?

    Hi,
    Pardon An error by the codes of the theme twenty Fourteen but twenty Seventeen, sorry.

    /* Gallery Columns */
     
    .gallery-item {
    max-width: 25%;
    }
     
    .gallery-columns-1 .gallery-item {
    max-width: 100%;
    }
     
    .gallery-columns-2 .gallery-item {
    max-width: 50%;
    }
     
    .gallery-columns-3 .gallery-item {
    max-width: 33%;
    }
     
    .gallery-columns-4 .gallery-item {
    max-width: 25%;
    }

    You have to adapt the code to your code

    **
     * 5.4 Galleries
     * ----------------------------------------------------------------------------
     */
    
    .gallery {
    	margin-bottom: 20px;
    	margin-left: -4px;
    }
    
    .gallery-item {
    	float: left;
    	margin: 0 4px 4px 0;
    	overflow: hidden;
    	position: relative;
    }
    
    .gallery-columns-1.gallery-size-medium,
    .gallery-columns-1.gallery-size-thumbnail,
    .gallery-columns-2.gallery-size-thumbnail,
    .gallery-columns-3.gallery-size-thumbnail {
    	display: table;
    	margin: 0 auto 20px;
    }
    
    .gallery-columns-1 .gallery-item,
    .gallery-columns-2 .gallery-item,
    .gallery-columns-3 .gallery-item {
    	text-align: center;
    }
    
    .gallery-columns-4 .gallery-item {
    	max-width: 23%;
    	max-width:         calc(25% - 4px);
    }
    
    .gallery-columns-5 .gallery-item {
    	max-width: 19%;
    	max-width:         calc(20% - 4px);
    }
    
    .gallery-columns-6 .gallery-item {
    	max-width: 15%;
    	max-width:         calc(16.7% - 4px);
    }
    
    .gallery-columns-7 .gallery-item {
    	max-width: 13%;
    	max-width:         calc(14.28% - 4px);
    }
    
    .gallery-columns-8 .gallery-item {
    	max-width: 11%;
    	max-width:         calc(12.5% - 4px);
    }
    
    .gallery-columns-9 .gallery-item {
    	max-width: 9%;
    	max-width:         calc(11.1% - 4px);
    }
    
    .gallery-columns-1 .gallery-item:nth-of-type(1n),
    .gallery-columns-2 .gallery-item:nth-of-type(2n),
    .gallery-columns-3 .gallery-item:nth-of-type(3n),
    .gallery-columns-4 .gallery-item:nth-of-type(4n),
    .gallery-columns-5 .gallery-item:nth-of-type(5n),
    .gallery-columns-6 .gallery-item:nth-of-type(6n),
    .gallery-columns-7 .gallery-item:nth-of-type(7n),
    .gallery-columns-8 .gallery-item:nth-of-type(8n),
    .gallery-columns-9 .gallery-item:nth-of-type(9n) {
    	margin-right: 0;
    }
    
    .gallery-icon {
    	line-height: 0;
    }
    
    .gallery-caption {
    	position: absolute;
    	bottom: 0;
    	left: 0;
    	font-size: .9em;
    	color: #fff;
    	text-align: left;
    	line-height: 1.3;
    	background-color: rgba(0, 0, 0, 0.7);
    	margin: 0;
    	max-height: 50%;
    	opacity: 0;
    	padding: 2px 8px;
    	width: 100%;
    	cursor: default;
    	-webkit-transition: opacity 400ms ease;
    	transition: opacity 400ms ease;
    }
    
    .gallery-item:hover .gallery-caption {
    	opacity: 1;
    }
    
    .gallery-columns-7 .gallery-caption,
    .gallery-columns-8 .gallery-caption,
    .gallery-columns-9 .gallery-caption {
    	display: none;
    }
    

    Thank you

    #60962

    The css worked beautifully to solve this issue on my static landing page except now when reducing the screen size before it gets to phone sized it crops the top of my image where the logo is displayed.

    Website: agapebulldogs.com

    #60663

    In reply to: Iframe Integration

    Yes, on this site (http://blogs.geo.fr/) other pages display correctly with same iframe integration I think.
    Ex : http://blogs.geo.fr/to/I76#http://blueashestravel.com/fr/itineraire-voyage-en-solo-mexique/

    Thanks for helping ! 🙂

    Website: www.dumondedanslobjectif.com

    #60628

    In reply to: Defects in Anima menus

    Zed
    Cryout Creations mastermind

    Your menu items and site title/tagline are too many/too long to fit in the available space, so the menu jumps lower on a second row. Limit your menu items or your site title/tagline to the available space to be displayed properly.


    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.
    #60607
    Zed
    Cryout Creations mastermind

    @Wakachuli, post title in posts lists use the H2 tag (and the site title, if displayed, has the H1 tag). Post titles in single post sections use the H1 tag.


    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.
    #60594
    Zed
    Cryout Creations mastermind

    Depending on what you’re currently displaying on the homepage, that would be simple or not.
    If you’re displaying a static page, then it should be no different than the rest of the singe pages you added the background on.

    If you’re displaying the posts list (or the theme’s presentation page feature which is an extension of the posts list), this behaves like a category/archive. Did you add the background video on other categories/archives? How?

    Doesn’t the plugin provide a general way of setting a background video site-wide (CSS and/or script)?


    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.
    #60327
    kvalentk
    Power User

    Thank you for replying, Keymaster. The problem that remained after I solved initial stuff by adding /#primary was with category pages, where you don’t set the Read More link manually. So every time the user selects one of these (for example at http://settingForth.pub > Help Me Write > Self-Help > category page display) the page reloads, goes to the top, and all that displays is the image.

    I have found a workaround that I’m implementing now. It’s a plugin called Collapse-o-Matic that initially loads the entirety of each page/post, but with a specified portion hiddne. The user then clicks to display the hidden portion, and no reload takes place. This may cause a category page to load less quickly, so I’ll need to specify that fewer posts load, but that’s easy.

    If there is a solution to this problem that I can make work on a category page, this will save me the trouble of having to open almost 100 posts and manually specify the portion of each that is to be hidden.

    I would think that the solution to this should be included in an upgrade to Kahuna; it does seem an obvious need.

    Thanks.

    #60281

    In reply to: [Simple] HTTPS support

    Zed
    Cryout Creations mastermind

    Links are not part of Septera. And which plugins are you referring to?

    All the links which are displayed in content are part of the content added to the site (menu, widgets, pages/posts) so they are under your control.

    Those used by WordPress (for the styles, scripts, some media, so on) are dependent on the URL you installed WordPress at and can be updated to use HTTPS if needed.

    You can find information for this procedure in the official WordPress.org forums and the documentation:
    https://make.wordpress.org/support/user-manual/web-publishing/https-for-wordpress/


    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.
    #60276
    Zed
    Cryout Creations mastermind

    The header widget area is displayed on top of the header image and requires the header image to be used and visible to activate.


    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

    The landing page’s (static) slider image and the header image are two separate images (set to the same graphical content by default). The static slider is part of the landing page feature and only visible on it. The header image does not display a caption.


    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.
    #60270

    In reply to: Mobile responsiveness

    Zed
    Cryout Creations mastermind

    @simons, you’re adding inline styling to the images, making them float left (so the text wraps around). This applies to all devices.

    You have to disable the floating for mobile devices for the images/text to be better aligned on small screens, for example:

    @media (max-width: 640px) {
       #pp-afterslider .ppbox img {
           float: none !important;
           margin: 0 auto;
           padding: 0 !important;
           display: block;
       }
    }


    @Mezzent
    , same CSS can work for you 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.
    #60119

    Thank you… but I found that those images only displayed when the theme was previewed. After publishing, they disappeared, so the issue is resolved. Thanks again.

    #60077

    Hello, i have the same issue with Kahuna 1.1.0. The selected featured image is only displayed in the posts list. In the single post section the featured image is ignored. Instead one of the header images is displayed.

    Website: www.ff-karroesten.at

    #60059

    PS: cropped helps but it displays the header image incorrect that way.

    #60005
    Zed
    Cryout Creations mastermind

    That is expected behaviour – the sidebars are displayed under the content on narrower screens (mobile devices) for improved content readability.


    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.
    #59995
    Zed
    Cryout Creations mastermind

    You probably have enabled the general header image and also selected to display random images from the theme’s suggested list. You can select or disable the header image from WordPress Site Identity > Header Image panel (in the customizer).


    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.
    #59992
    Zed
    Cryout Creations mastermind

    1. WordPress displays a specific number of posts on the homepage – by default 10 (this number is configurable in WordPress’ Reading settings).
    2. The height of the post blocks depends on the actual post content/excerpt (which would need to match in height).
    3. The theme does not (and cannot, per the guidelines) provide such functionality. You’ll most likely need to look for a plugin to do this.
    4. The theme is already optimized for this. However, repository themes are not allowed to include direct SEO functionality – you’ll need to use a plugin for this job as well.
    5. The customizer preview does not switch between device layouts, it just emulates how your site would fit on a certain screen size.
    The theme features multiple widget areas in its sidebar, some of which are always displayed before the content, some after the content and some not at all on mobile devices. Place your widgets as needed.


    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.
    #59986
    Zed
    Cryout Creations mastermind

    The landing page feature of the theme is not designed to 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.
    #59985

    In reply to: Featured image size

    Zed
    Cryout Creations mastermind

    The image sizes registered by the theme are not directly controllable, but they can be disabled by commending out/removing the appropriate code in the theme’s includes/setup.php file.

    Keep in mind that the theme will most likely display the wrong size images in all locations after doing this.


    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.
    #59976
    Zed
    Cryout Creations mastermind

    I assume you manually copied the header socials HTML markup to your widget, as the header socials are not displayed in that location.

    Try this CSS:

    #header-widget-area #sheader {
        float: none;
        margin: 0 auto;
        display: table;
        position: static;
    }

    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.
    #59967
    Zed
    Cryout Creations mastermind

    If you’re referring to the search box displayed in the menu (at the right end), that’s configurable from the theme’s Graphics 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.
Viewing 30 results - 511 through 540 (of 1,618 total)