LebCit
Forum Replies Created
-
Forum: Plugins
In reply to: [Comments - wpDiscuz] Medias in commentsHello,
Thanks for your response.
I’m actually building a theme upon _s.
I had never, before, come across a WordPress notification, tutorial, codex explanation thatdefault WordPress comment system does not support video/image embedding.
The theme unit test is developed and recommended by WordPress for developers to test if every aspect of their theme is working as it should do, so it’s a native WordPress function…
I wanted to use your plugin for this theme that i’ll soon upload to WordPress repository.
But without medias embed I’ll have to find another solution for comments.Thanks a lot again.
- This reply was modified 9 years, 6 months ago by LebCit.
Forum: Themes and Templates
In reply to: [Sela] Changing Color of Page Links and Drop-down MenusHello,
.main-navigation ul ul a:hover { color: #9f877a !important; }.child-pages grid h1 a:hover { color: #9f877a !important; }SYA ๐
- This reply was modified 9 years, 6 months ago by LebCit.
Forum: Themes and Templates
In reply to: Menu implementationHello,
I’ll get back to you today.
Two questions :
1- Is your site local or live ?
2- If your site is local, can you send me a link to download your theme ?
(I assume that you have done a lot of css changes…)Waiting for your link
SYA ๐
Forum: Themes and Templates
In reply to: Text above headerOH and there is this /> just after more ยป
ALSO DELETE IT !SYA ๐
Forum: Themes and Templates
In reply to: Text above headerHello,
Did you change your header.php ???
Go to header.php search for more ยป and delete it !
DELETE JUST more ยปSYA ๐
- This reply was modified 9 years, 6 months ago by LebCit.
Forum: Themes and Templates
In reply to: Menu implementationHello,
I see, from your profile, that you’ve been here since 2009…
Since you are using _s, I assume that you know how to develop…
Tell me what you did till now and I’ll help you get it to work.SYA ๐
Forum: Themes and Templates
In reply to: [Make] How to make Header Border transparent or Hide itHello,
Try this .header-bar { border-color: transparent; }If it doesn’t work try
.header-bar { border-color: transparent !important; }SYA ๐
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove Category Title from page of postsTry this
#content { padding-top: 0em; }SYA ๐
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove Category Title from page of postsWhich gap ???
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove Category Title from page of postsh1.page-title { display: none; }
THIS WILL REMOVE ALL THE PAGES TITLES !Forum: Themes and Templates
In reply to: [Pure & Simple] Remove Category Title from page of postsHello,
Try this and let me know, you should add it to your functions.php file
add_filter( 'get_the_archive_title', function ( $title ) { if( is_category() ) { $title = single_cat_title( '', false ); } return $title; });SYA ๐
Forum: Themes and Templates
In reply to: [Lifestyle] Second Headline shows up twiceHello,
This should be a header image, you can add or remove it in the customizer.
I don’t know the developer configuration for the header image but it should be in the customizer.
If it’s not, just let me know, I’ll help you hide it.SYA ๐
Hello,
Glad to hear that everything worked out for you.
SYA !
Hello,
1-
aside a { color: #78C7C7; }2-
nav#site-navigation a:hover { color: #CFECEC; } .main-navigation ul li.current-menu-item a { color: white !important; /*replace white by your color*/ }3-
The changes have to be made to footer.php
CHECK THIS VIDEO ! ๐SYA
Forum: Themes and Templates
In reply to: [Canape] How to change the menus font?Hello,
.main-navigation a { font-family: my-font-family; }SYA