Search Results for 'ie'

  • Author
    Search Results
  • #62720

    Thank you. This is indeed the solution that I have used now. It is not fully robust because in my case there are several users-editors that can edit the website, and some users will probably upload larger images in the future for a page/post that should not use the header image. A per-post/page option would have been much easier, but the workaround is working for now.

    #62196

    In reply to: Feature Boxes problem

    Kahuna ChildVersion: 1.1.1.1520291327
    KahunaVersion: 1.1.2

    http://www.agapebulldogs.com/

    I have regenerated thumbs. Didn’t help. I have the LP featured bottom boxes set to a height of 400. It only shows correctly in Chrome when I refresh.

    A separate issue (hopefully) is the text box from one of my pages that is located above the featured bottom box is not showing images. I believe that is a plugin issue.

    I really need those boxes to work correctly. The distortion is distracting. Especially going from full laptop screen to any resize the images are not keeping aspect. The same happens on my phone screen.

    #62153

    I tried the above, and it didn’t do much. The multilanguage option did not show up for me in serious slider.

    #62134
    Zed
    Cryout Creations mastermind

    If you only want to display custom taxonomies in the landing page, you’d need to customize the landing page generation code (in includes/landing-page.php).

    If you want the custom taxonomies to be selectable in the customizer controls, that would require a lot more customization 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.
    #62130

    Categories, sorry!

    This is the blog: https://www.travellingdany.com

    The square boxes (4) on the home page showed featured posts that I tagged specifically. Now they only show the most recent posts. I didn’t change anything, but I just updated the theme.

    #62118
    Zed
    Cryout Creations mastermind

    @skpManiac: we’ve updated the text to indicate the correct location of the option, but if you’re using the theme since the old text was used WordPress has saved it and still uses it as the option value.

    @Joanne
    : if you’re using Fluida, that’s where the option is. For some of our other themes, the footer text field is located elsewhere.


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

    Featured images will be used as header image (if the option is enabled) in single post/page views. They are not displayed inside the content of posts or pages (that includes custom post types).


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

    Tags? Or categories?
    The theme’s selectors only display categories for post filtering.


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

    It is not practical (nor usable) to have a separate option controlling each attribute for each component element. Most simple tweaks can be achieved with extra CSS.


    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

    diamondrcreative
    Power User

    1st – LOVE the theme. Great stuff, as usual. 🙂

    Is there a way to just remove the top line above widget title? That’s what I’m trying to accomplish. I tried the code here and code supplied in another question/response but it didn’t remove it. (Maybe code not meant to fix my request.) I would just like to remove the top line in widget titles.

    You can see this in my sidebar (pick any page) and in the footer.

    Website: diamondrcreative.com

    #61604

    1. What is the custom CSS for adding extra padding?
    4. In the “typography” section of customize, I am writing “belgrano” in the Google Identifier field.

    #61528

    Something very strange happened… I used ‘Open Sans’ font for a while and now decided to play around again with the ‘Futura’ font. When I switched to it everything looks just fine even for cyrillic. I tried with other fonts that were not working before and they all look fine now…

    P.S. Because I was experiencing an issue with the widget screen looks I had to deactivate and then activate again qTranslateX plugin. Could this be the case for fixing the fonts…?

    #61359

    Thank you very much for your reply!
    I am trying to use ‘Futura’ font. It turned out that only text which use ‘General Font’ theme settings is broken.

    I tried your suggestion as: Futura&subset=cyrillic,cyrillic-ext
    But it did not work… Then I select ‘Open Sans’ from the theme recommended fonts. This looks most similar to ‘Futura’ so I could leave it this way.

    Still if you know how to make the ‘Futura’ font work I will be very grateful!

    Thank you,
    Vasil Krastev

    Sorry, but I could not think, that it for general settings important is.

    I wrote now it below in field Website URL.

    Website: dowego.ru

    #61357

    Hi Zed,
    Thanks for your reply.
    I have tried to install the plugin directly from the WordPress repository, but when I do, I see the header error. I am not sure why. There may be an issue with my WordPress files. I am not sure.
    Ah, you’re right. It does say “minimum.” Thank you for clarifying!
    Please let me know if you have any suggestions.
    Thank you again.

    #61341
    Zed
    Cryout Creations mastermind

    If you’re using Google Fonts (the suggested ones are), by default the theme does not attempt load any other character sets beside latin to save up on bandwidth.

    For Cyrillic support I recommend manually entering the font name in the identifier field (in the theme’s fonts options) and include the charset. Example:
    Roboto&subset=cyrillic,cyrillic-ext


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

    The headings font size is configurable in the theme options, but there is only one setting which applies to all headings (as they have synchronized sizes).

    If you want to customize particular headings, use CSS:

    h2 { font-size: ... }
    h4 { font-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.
    #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

    #61077

    In reply to: Gallery ?

    Hi,

    I looked in the file “style. css ” From Twenty Fourteen, I found some code for the galleries.
    I added the code in “style. css ” in the theme parabola
    I just edit for 3 columns, instead of 33.33%, I put 30%
    Here’s code

    Code CSS

    /* 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%;
    }

    With this code in all your themes, more galleries problems.
    This is the result
    http://er.v.free.fr/index.php/ant-man-l-homme-foumi

    These are the default values like H1, H2, H3,..
    https://www.w3schools.com/cssref/css_default_values.asp
    or
    https://www.w3schools.com/tags/tag_hn.asp

    Problem solved, thank you for your help

    #60959

    Also, I see that the recommended version of the plugin on the Appearance> Nirvana Plugins page is the 0.5.1 version, not the current version of the plugin, 0.5.9. I also have tried to install that version, without success.

    #60911

    Hi – I’ve updated to 3.0.4 and it’s working fine now! I’m not sure why but the one change I made was to put in a functions.php with the newly-recommended enqueueing style so perhaps this was it (I’m sure I tried that earlier but… ah well!).

    Thanks for your help!

    #60819

    @Zed
    New version 1.2.0 still doesn’t support categories and products of WooCommerce. Can you please give some advice for issue resolution?

    #60764
    myob9a
    Power User

    Tried this on another site with different content with the same result.

    This issue is now the only thing holding back a ‘go-live’ update to the site.

    #60711

    In reply to: Search Bar not showing

    Sorry, I’m stupid. I didn’t create a menu at all so obviously the search field couldn’t appear.
    Topic closed.

    #60655
    myob9a
    Power User

    Nearly did the trick, but the image top (say 80px) is at the bottom of the image. See url. I have no additional CSS code that modifies the classes you have used.

    It distorts also in Firefox with that change.

    Thoughts

    Website: www.cla.williamsonau.com/cla/contacting-cla

    #60634

    Hi,
    https://www.natura-medioambiental.com/la-sobrepoblacion-y-el-medio-ambiente-desafios-ante-el-cambio-climatico/
    The title is well in H1 !

    But there’s no H1
    https://www.natura-medioambiental.com/
    He put a image or a logo, from the shot of H1

Viewing 30 results - 901 through 930 (of 3,144 total)