Search Results for 'ie'

  • Author
    Search Results
  • #100215

    Okay, therefore I was right. I tried all options, but I didn’t find a solution for this issue. Thank you very much for the fast reply and the keep on the good work 🙂

    #100193
    Zed
    Cryout Creations mastermind

    The theme has the option to select which letter that effect applies to (or disable it), but not its appearance.

    You can try the following CSS to make the background square round:

    #site-title span a span:nth-child(1) {
        border-radius: 100px;
    }

    If you’ve adjusted the position of the marked letter, you’ll need to edit 1 to the correct number.


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

    Inline styling usually indicates it is generated at runtime, normally from configurable options. Check if the interface you use to set up the galleries provide you with controls for the margins 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.
    #100189

    In reply to: Social Media Icons

    Zed
    Cryout Creations mastermind

    @simone369, I believe you are looking at the wrong documentation.

    Nirvana’s documentation (specifically the socials section) is available at:
    https://www.cryoutcreations.eu/docs/themes-legacy/settings/social/

    The theme’s settings page is in the dashboard, no the Customize interface.


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

    You can also try using the Google font identifier field to define the font name and append &display=swap to that name.


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

    Menu items left/right padding:
    body #access a { padding-left: 1em; padding-right: 1em; }

    The menu height is shared with the logo and the sidebar menu toggler, so these would all need adjusting at once. The menu’s height also applies to the fixed menu.

    You can reduce the submenu items height with:
    #access ul.sub-menu a { line-height: 2.5; }

    Adjust the values as desired.


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

    Some landing page elements described in the documentation do not apply to Verbosa (you can see which themes specific information applies to by the presence of the theme indicators on the right side of the titles – Verbosa uses [VE]).

    Verbosa’s Posts Layout option is located in its Layout options panel.


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

    Codex is a child theme of the free edition of Roseta.
    Roseta Plus already includes its style and appearance as one of its available color schemes, selectable from the corresponding option.

    This also applies to the other themes that also have child themes (Fluida-Liquido and Esotera-Arcanum).


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

    I think you found a fault in the theme, as the sidebar link color options are no longer applied.
    We’ll look into this and correct the issue in the next theme update.

    Thank you for pointing out the issue.


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

    I have the same problem. It must be a bug in the theme. I am using Esotera. Same exact problem. The featured image doesn’t show in the header when the link is clicked in social media apps on a mobile device. It shows on all other browsers and platforms as far as I know. It does not show the image if you click from instagram, facebook, pinterest, from mobile on their in app browser.

    UPDATE: I tried it from an android device and it worked fine. It seems to be a problem only from the apps in iOS.

    Its a big issue for me, since this will be a blog site and most people will click from social media posts on their phone.

    https://thelovebetweenus.com

    Please lmk if you found a solution!

    Website: thelovebetweenus.com

    #99966

    In reply to: Social Media Icons

    Hello, I tried to follow the instruction about the social icons. I want to delete the twitter icon on my website, but I can’ t find the place to do that.
    I discovered that I have no Appearance > Customize > General > Social Icons. The General is missing in the menu. How can that be? How to resolve?

    Website: sebastiaan-trainingcoaching.nl

    #99399
    hedesigns
    Power User

    Thank you so much! I appreciate your patience and persistence.

    #99398

    In reply to: Category title

    Dear all,

    I’m doing a job and have a doubt that I would like to share with you looking for some help.

    I have to remove the “pretitle” so that the titles only show the “title” and not the “category: title” or “archive: title”.

    I have tried several solutions and so far cannot resolve this issue. I wonder if anyone has any information to help me.

    Thanks!

    Zed
    Cryout Creations mastermind

    The first identifier in the apply_filters() call tells WordPress which (existing) filters to use for that call. In this case it applies the same filters as applied on excerpts to the data returned by the second argument – the get_the_excerpt( 'excerpt', $pageid ) call.

    This is the code returning the excerpt of the page which you need to change to return full content instead.

    WordPress has a get_the_content() function that can be used instead, but parameters will need adjusting and care should be taken for the details provided in the ‘more information’ section of that page.


    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.
    This reply is private.
    #99232
    Zed
    Cryout Creations mastermind

    You need to adjust the margin top option only.
    The other one applies to the left/right content padding (which can make your text go all the way to the content edges).


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

    Categories don’t have featured image functionality in WordPress.

    A plugin may hide the additional attributes to associate such an image to a category, but this custom functionality would need to (manually) be accounted for on the frontend (specifically for the method used by that particular plugin).


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

    In reply to: Hide menu on page 8

    Zed
    Cryout Creations mastermind

    Those identifiers were close, but not completely correct:

    .page-id-8 #access {
        display: none;
    }

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

    The header is normally full width. Ensure that the video you are using in the header is wide enough to fill up the header (when viewed on a larger/wider display) while also fitting in the configured height (if its height is shrunk to fit, its width will also be reduced proportionally).


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

    In reply to: Customize Posts Page

    Zed
    Cryout Creations mastermind

    1. The blog section displays all posts (without any filtering options).
    If you only want to list specific posts, sort them in categories and link to the categories instead (and you’ll have to stop using the blog section).

    2. Esotera is designed with a particular visual layout. If you need a different layout, one of our other themes may be a better match.


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

    The CTA buttons positions are not directly configurable (they can however, be tweaked with custom styling if needed).
    To remove them simply leave the related CTA button fields empty in the theme 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.
    #99135
    Zed
    Cryout Creations mastermind

    Free support in the forum is provided as our own time and availability permits.
    If you are pressured by time constraints you can use our priority support service instead.

    The screenshot alone is insufficient to identity the reported issue and its cause.
    How did you apply a YouTube video in the header area of a page? WordPress does not provide such functionality for individual pages, it only supports video headers 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.
    #99113
    Zed
    Cryout Creations mastermind

    The following CSS should achieve the same result:
    body .column-image img { max-height: 100%; }


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

    The frames come from the galleries own options (as they’re added with inline styling generated at runtime).


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

    You can use our themes on as many sites as you’d like, including personal or commercial websites.

    For our Plus themes, the licensed sites number indicates the number of sites you can activate the automatic updates on and receive priority support for.

    By site we refer to a single WordPress installation using a particular theme (the installation can be on the main domain, in a subdomain or a subfolder of a domain). We do not count staging/development copies.


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

    The presentation page has section background color options:
    https://www.cryoutcreations.eu/docs/themes-legacy/settings/color/#presentation-page

    For the text color, most content relies on the general text color option, however some elements default to a preset color. Use the following custom CSS for these:
    html { color: #000; }


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

    I am not seeing a flower image on the site at this moment.

    The indicated styling applies to the presentation page’s individual sections (containers), so I’m not sure how that would affect or apply to an image.


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

    When the content of the menu no longer fits the available screen width the menu can span multiple lines (overlapping the content below). This usually happens with large menus and long site titles and the site being viewed on smaller devices.

    The solution to this is to either adjust the menu and title to fit in the available space or apply custom styling to activate the mobile menu earlier (on larger screens).
    The Plus edition of the theme includes an option to control this activation point.


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

    I notice there’s some inline styling applied to each gallery overriding the theme’s own styling which applies margins:


    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.
    #99007
    Scott Hutchison
    Power User

    Thanks Luistom.

    I fixed the issue.

    A quick update. The issue I was having was the Esotera Theme slider. (Esotera is a responsive theme) I discovered that the slider is not fully responsive for an image that has a vertical ratio of 3 x 4.8. No matter the size of the image. I tried a 753 x 1200 image and a larger 1500 x 2389 and both didn’t scale correctly in the Esotera theme. So my solution was to change the ratio that was less vertical. 3 x 4 to be exact. It scales correctly now.

    Thanks!
    Scott

    http://www.Scotthutchison.com/art

    Website: www.scotthutchison.com/art

Viewing 30 results - 511 through 540 (of 3,157 total)