Tagged: menu bar.
- This topic has 16 replies, 2 voices, and was last updated 7 years, 11 months ago by Mahesh.
-
AuthorPosts
-
June 30, 2016 at 10:02 pm #94493filip_1Participant
Hello,
I have created a web-page for my company but I have some problems with menu bar. I would like to customize length of links which are placed on menu bar. I want to be able to customize menu bar, so are there any tools that could solve my problem.If someone could help me, I would be very grateful !
July 1, 2016 at 12:40 pm #94539July 1, 2016 at 3:13 pm #94548filip_1Participant@Mahesh here below is a link of my test page:
http://www.zupa-bezgresnog-zaceca-bdm.hr/test/en/
a nice greetings,
Foilip
July 1, 2016 at 4:38 pm #94564MaheshParticipant@filip_1: What actually do you want to customize in the menu? You’ve mentioned that you want to customize the length of links, can you please show me with an image as an example.
Let me know further.Regards,
MaheshJuly 1, 2016 at 7:19 pm #94569filip_1Participant@Mahesh I have put the photo and explanation on my web page ( http://www.zupa-bezgresnog-zaceca-bdm.hr/test/en/ ) so there you could read and see photo.
Regards,
Filip
July 3, 2016 at 9:55 am #94631MaheshParticipant@filip_1: I checked you site, now you’ve removed some of the menu items and there are six item now. To make the menu items use all the space to the right, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#menu-pocetna .menu-item { width: 16.565%; }
Regards,
MaheshJuly 22, 2016 at 4:42 pm #95924filip_1ParticipantIt’s not working well as you thought. I have put width on 15.564% and it still doesn’t fill the hole area and 15.565% is too big so one link pass in the new row. Also, when you want to click on some of those links, the black area which is shown then, doesn’t fit into the window of link.
Thanks you in advance,
Filip
July 22, 2016 at 5:31 pm #95930MaheshParticipant@filip_1: Please use the following CSS instead:
#header #mainmenu ul li:last-child { border-right: none; } #menu-pocetna .menu-item { width: 16.564%; } #header #mainmenu ul li a { width: 82%; }
Hope this helps. Let me know if any problem.
Regards,
MaheshJuly 29, 2016 at 6:59 pm #96252filip_1ParticipantIt worked very well, but now new problem has appeared – when you want to click on menu-link “Zajednice” it shows sub-items on very strange way, how to remove right margin in sub-item.
Regards,
FilipJuly 31, 2016 at 9:35 am #96311MaheshParticipant@filip_1: Please add the following CSS, it will fix the issue.
#menu-pocetna .sub-menu .menu-item { width: auto; } #header #mainmenu ul li .sub-menu a { width: auto; text-align: left; }
Regards,
MaheshSeptember 7, 2016 at 11:41 pm #98899filip_1ParticipantHello,
1) can you please review my header menus bar so all the pages fill the hole header menu area…
2) is it possible that some photo stands beside the title ?
http://www.zupa-bezgresnog-zaceca-bdm.hr/test/en/
Regards,
FilipSeptember 7, 2016 at 11:42 pm #98900September 8, 2016 at 12:35 pm #98942MaheshParticipant@filip_1:
1. Please add the following CSS:#menu-pocetna .menu-item { width: 16.565%; } #header #mainmenu ul li a { width: 82.5%; }
2. Is it possible that some photo stands beside the title ?
Can you please clarify more on this…Regards,
MaheshSeptember 8, 2016 at 9:19 pm #98997filip_1ParticipantI’ve put the instructions on my web page post – Photo beside the title –
http://www.zupa-bezgresnog-zaceca-bdm.hr/test/hr/Regards,
FilipSeptember 9, 2016 at 9:55 am #99026MaheshParticipant@filip_1: Please check the demo of Simple Catch Pro. As you can see, you can put a logo just beside the Site Title with Logo option in Customizer. But as for what you’ve mentioned, to have image on both sides, you’ll need further customization and manage HTML structures and design too. I recommend you to hire a customizer.
Regards,
MaheshDecember 4, 2016 at 7:03 pm #104512filip_1ParticipantHi again,
I have one question regarding the featured image.
The featured post slider is linked with the featured image of the each post. I can decide which image(featured image of certain post) should be shown on a featured post slider. But there comes the problem. Image format of a image that is shown on featured post slider is good, but the cropped image of post(this little image that is shown next to the post) is not good.
Is there a way that I could edit the featured image that is displayed in the box next to the post text on the front page.
Site URL : http://www.zupa-bezgresnog-zaceca-bdm.hr/
Thank you for your help.
December 5, 2016 at 9:56 am #104546MaheshParticipant@filip_1: Do you mean to change the image size of the featured image on the blog list page? If so, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s
functions.php
, add the following codes:add_action( 'init' , 'simplecatch_child_adjust_image_size'); function simplecatch_child_adjust_image_size() { remove_image_size( 'featured'); add_image_size( 'featured', 210, 210, false); }
Note: change the dimensions as required. The default thumbnail size is 210 x 210 and set to true so it crops the image and doesn’t maintain the aspect ratio.
For the above code to work, you have to activate the child theme. After activating, you do not have to update the all the images. Please use Regenerate Thumbnail plugin to regenerate all the images with desired sized.
Go to “Dashboard=> Tools=> Regen. Thumbnails” and click Regenerate All Thumbnails. Then check your site, it will resize the thumbnails uncropped.Hope you understand.
Regards,
Mahesh -
AuthorPosts
- The topic ‘Menu Bar’ is closed to new replies.