Forum Replies Created

Viewing 30 posts - 181 through 210 (of 219 total)
  • Author
    Posts
  • However the code is designed surely it is a bug that you can only attach a Custom CSS Class to the Blog Posts element when the Style is set to Grid Layout?

    I’m happy to hack a source PHP file to fix the bug if you can provide a workaround until this gets fixed in the next theme update.

    And @Yigit’s solution does not get round the problem. The column in question has 4 Blog Posts elements in it. I want to change only 3 of those to alter what post meta is shown. If I add a Custom CSS Class to the column itself, rather than each of the Blog Posts, then all 4 Blog Posts elements in the column are targeted, which is not what I want.

    in reply to: Change icon list heading type #634458

    OK, got it, thanks.

    in reply to: Change icon list heading type #634425

    @Basilis – bit confused why you mention masonry_entries.php? It’s iconlist.php I need to modify – did you misread the filename and does the same principle apply for iconlist?

    Excellent Yigit, many thanks.

    Hi Yigit,

    That does not solve what I’m trying to do. Here’s the issue.

    The Blog Posts element under Business in that left column is Single Author, small pic Style. But the Blog Posts element does not give any control of the meta elements, hence I have some CSS:

    .home-business .blog-meta,
    .home-business .post-meta-infos,
    .home-business .entry-content {
    	display: none;
    }

    That CSS is not working however because the home-business custom class is not added to the Blog Posts element unless the Blog Style is Grid Layout. Surely not adding the custom class is a bug?

    (I tried your suggestion of adding a custom class to the overall column and the class is added but I only want to selectively switch the meta off for some of the Blog Posts elements, not all, but using it on the column switches off all the meta in the column).

    Hi Yigit,

    Yes I did, I was just about to post that!

    I changed .menu to .sub-menu and it worked. I assume that’s the correct way?

    One further question – I wanted to space out the right arrow from the sub-menu title and so am using this:
    content: '\00A0\00A0\00A0\00A0\00A0\00A0\00A0\00A0>'

    However, depending on the sub-menu title length, the arrows are not vertically aligned with this method. as you have seen.

    Is there a way to have the right arrows lined up vertically under each other on the right side of the sub-menu li container e.g. remove the spaces and use float: right or similar?

    @Yigit – I got an email from you answering this but it has not updated here in my original post:
    “Yigit wrote:
    Hey zimbo,
    Please refer to my post here – https://kriesi.at/support/topic/manu-bar/#post-622656
    Best regards,
    Yigit
    Post Link: https://kriesi.at/support/topic/how-to-display-an-arrow-in-a-sub-menu-to-indicate-a-further-sub-level-exists/#post-633080”

    That solution works for the sub-levels but it also puts the ‘ >’ on the top level main menu elements – is there a way to NOT have the right arrow on the main menu but only on the sub-menu/levels?

    • This reply was modified 8 years, 8 months ago by zimbo.
    in reply to: Change icon list spacing #627794

    That works, thanks!

    @Rikard – you got it, that works, thanks! I didn’t realise you could add :hover to any element, not just … :-)

    in reply to: Change heading colour when it's a link #598530

    Thanks that appears to have solved it, I’ve added a:hover as well.

    in reply to: Don't display Featured Image 'tick' not transferred #596979

    This problem is not about Enfold theme customisation per se, it’s about which SQL table and column/element Enfold uses to set “Don’t display image on single post” on a post. I was looking for some help to quickly identify this, but as that was not forthcoming I had to spend a day working it out and I have now modified the SQL database myself via phpMyAdmin to fix the problem. :-)

    So you can now close this issue.

    Thanks Yigit, very helpful – case closed!

    @Yigit: well, you live and learn… :-)

    I’d seen classes used without a space in previous answers here but didn’t understand why before.

    Are there any rules as to when I’d need to specify a theme element like .av-special-heading as well as the Custom Class or is it dependent on the HTML element and what CSS property I’m trying to add or modify and so just a matter of trial and error until something works?

    in reply to: Change heading colour when it's a link #596885

    If an element is purely a heading e.g. <h2>This Is My Section Heading</h2>, then it displays using the Main Content Heading Color (red).

    If an element is heading with an embedded link, then the Primary Color should be used, e.g.

    <h3>
    <a title="All the Fun of the May Fair" href="http://dev.henleyherald.com/2014/05/06/...">All the Fun of the May Fair</a>
    </h3>

    This needs to display using the Primary Color (blue) because the heading is actually a link, and links display using the Primary Color.

    You can see an example on this page: http://dev.henleyherald.com/

    Top Stories is an H2 shown using Main Content Heading Color, red, as it should be. It is not a link to anywhere, just a heading.

    The “Duck Diving Mayor…” H3 heading under it is also a link to a post and so should use the Primary Color (blue). Same for all other headings displayed via Blog Posts.

    Thanks Yigit, looks OK now.

    For future reference / my education… can you explain why it doesn’t need the .av-special-heading class adding? I think I maybe misunderstand how the Custom CSS Class works – I use it in some places and I have to specify an additional class to target an element, yet in other places I don’t. Just trying to save posting future support questions if I can!

    Details in private content, it’s a development/test site so not everything is working yet. :-)

    in reply to: Remove title from posts #595803

    OK, it does work so I’ll stick with that. Thanks.

    in reply to: Don't display Featured Image 'tick' not transferred #593283

    I understand it’s advanced and I can probably do the database update but I need some help please to know which table and parameter to alter – surely it’s documented somewhere where “Don’t display image on single post” is stored? That’s all I need.

    in reply to: Different meta elements post vs page #593278

    Thanks, but that turns them off everywhere – how would I target all pages with this, but not posts?

    Or more specifically it’s the Blog Posts section on a page (I’m using single author, small preview pic in Blog Layout), and/or the individual post summaries, where I want to switch the meta off.

    • This reply was modified 8 years, 10 months ago by zimbo.
    in reply to: Centre the main menu #592833

    Brilliant, thank you!

    in reply to: Centre the main menu #592636

    Website link in private content, it’s a test/development site so there’s lots of ‘work in progress’ and there’s no home page at present, but you can see the main menu via the sub-page link provided.

    Setting the left command above to 20% appears to centre the menu on a 1920px screen, not -50%, but it doesn’t work as screen sizes reduce. Also, acting on .avia-menu.av-main-nav-wrap means the search icon just goes to the right so I’m not sure this will work anyway because it’s just the menu elements within that container that need changing.

    You’ll see from the CSS file I tried

    .menu_pad_left {
    	padding-left: 17%;
    }

    and added that class to the first menu element, but again this fails: the 17% needs to be reduced with media queries as screen sizes reduce.

    in reply to: Add text to title #592618

    I thought so, but I’ve done a bit of PHP & CSS customisation in the past, could you offer some pointers as to how I might do this e.g. which code modules I’d need to modify, and I’ll have a look at it myself. Thanks.

    in reply to: Enfold Showcase #572232

    A recently completed project for an art gallery using Enfold – Jack’s Gallery

    in reply to: Theme Updates not showing in WordPress Updates #561259

    I posted earlier in this thread and was advised on December 2nd to upgrade manually from 3.3.2 to 3.4.6, which I did. I was told that auto-update would work next time there was an update.

    3.4.7 was released on December 18th but Theme Update is still telling me today “No Updates available. You are running the latest version! (3.4.6)” and manual check says the same.

    So this auto update process is still not fixed but as per @Maximus_ I guess you know that…

    in reply to: Theme Updates not showing in WordPress Updates #545844

    I have updated Transient Cleaner to 1.3.1 and re-run both Clear Expired Transients and Remove All Transients functions.

    Theme Update still says “You are running the latest version! (3.3.2)”. A manual check tells me “Your themes are all up-to-date.”

    So it still does not work. The login requested by Rikard is still active for someone to investigate further.

    in reply to: Theme Updates not showing in WordPress Updates #543128

    Any update on a resolution to this problem?

    in reply to: Theme Updates not showing in WordPress Updates #540762

    Indeed… forgot that. In private content.

    in reply to: Theme Updates not showing in WordPress Updates #538924

    Login details below. I’ve only got Transient Cleaner plugin installed at present but I did try Transient Manager as well.

    in reply to: Theme Updates not showing in WordPress Updates #538129

    I’ve tried both Transient Cleaner and Transient Manager plugins and neither deletes the update_themes transient object – is this because the plugins (I think) only delete “expired” transients but update_themes is set as ‘Does not expire’ hence it does not get removed?

    Bottom line is Theme Update is telling me no updates are available but I am running 3.3.2 and want to upgrade. And I know I can do it manually via FTP but I’m trying to get this ‘auto update’ of Enfold feature working given it’s part of the theme…

    NB. Check Manually doesn’t work either.

    in reply to: Envato Support Policy #501842

    @Kriesi: re. “if its possible for us to offer free ongoing support” – I’m pretty certain from re-reading the notes posted by Envato staff that you will be able to offer free ongoing support to those who purchased before Sept 1. Quite how you will manage to differentiate between pre- and post-Sept 1 purchasers in terms of allowing us to post will, I’m sure, be an interesting challenge, one that I’m sure you could do without… we’ll wait and see how this works out.

    A personal view is that what Envato have done for pre-Sept 1 purchases is illegal in terms of the sale of goods: they can change the terms for all new purchases but if an item was sold with certain conditions (like free lifetime support) then those conditions apply forever – they cannot alter the original terms of purchase, i.e. you (Kriesi) offered free lifetime support when I bought Enfold a few months ago, so those terms must always apply.

Viewing 30 posts - 181 through 210 (of 219 total)