aljoschak
Forum Replies Created
-
Happy I could help!
Forum: Plugins
In reply to: [Five Star Restaurant Menu and Food Ordering] Lightbox to show DetailsWow I was looking a lot in CSS formatting lately, but I am not very deep in the subject yet!
Thank you so much! Did not expect this to be so quickly resolvable!After trying, I removed the first line before the comma, because the I decided to display the price.
Just wanted to note in case sombody wants to use this css snipped.- This reply was modified 5 years, 1 month ago by aljoschak.
line-height: 0 would be another setting to add, for example
Mhh I am also not an expert on that matter – just that I had to try out myself a lot lately ??
But from what I know so far I could imagine, that the remaining distance is part of the parent class settings (maybe its some heading type with a preset paragraph setting).
This gets inherited, so there will be maybe some more css settings which you need to tune.
Try inspecting the element in the debugger and read about css settings to find out what could be the reason.I tried to look at your elements by right clicking and “inspect element” in the browser. Then you can see the css code.
The problem is the parameter of “fdm-item-title” having “padding-bottom: 40px”.If you go into the debugger (which opens when you imspect elements) and reduce for example to 4px, then you get what you want.
You could try to go to your wordpress > customize > additional css and try to add
.fdm-item-title { padding-bottom: 4px }
This might already solve your problem.
Cheers
Aljoscha- This reply was modified 5 years, 1 month ago by aljoschak.