PDA

View Full Version : Need help to move arrow in navbar


john7911
02-13-2016, 04:21 PM
Hi,
I have a small problem with an arrow in the Navbar, can anyone please help me to move it or hide it?
I have tried with FireBug and Inspect element but I don't find a solution :(
Here are some pictures:
https://vborg.vbsupport.ru/external/2016/02/6.jpg
https://vborg.vbsupport.ru/external/2016/02/7.jpg
https://vborg.vbsupport.ru/external/2016/02/8.jpg

The link of my Forum:
http://cadtuts.eu/forum/forum.php
Thank you ;)

Skyrider
02-15-2016, 01:18 PM
From what I can see, you already did it.

john7911
02-16-2016, 09:23 AM
From what I can see, you already did it.
Hi,
I put it back, I have changed it with a transparent image to hide it because I couldn't find a solution.
Can you have a look?
Dank u ;)

webmastersun
02-17-2016, 05:05 AM
Hi,
I have a small problem with an arrow in the Navbar, can anyone please help me to move it or hide it?
I have tried with FireBug and Inspect element but I don't find a solution :(
Here are some pictures:
https://vborg.vbsupport.ru/external/2016/02/6.jpg
https://vborg.vbsupport.ru/external/2016/02/7.jpg
https://vborg.vbsupport.ru/external/2016/02/8.jpg
Thank you ;)

You can try this
Add it to your additional.css
.navtabs li a.navtab img{
margin-top: 5px;
}

or find in your forum templates

<img data-web-developer-element-ancestors-outline="true" style="outline: 1px solid rgb(185, 74, 72);" src="digitalvb/morbid/misc/arrow.png"....

Change to this

<img data-web-developer-element-ancestors-outline="true" style="margin-top:8px;outline: 1px solid rgb(185, 74, 72);" src="digitalvb/morbid/misc/arrow.png"

john7911
02-17-2016, 09:04 AM
Thank you very much webmastersun for your help.
I found the solution, I did as you say
.navtabs li a.navtab img{
margin-top: 5px;
}
:)

webmastersun
02-18-2016, 12:22 PM
Thank you very much webmastersun for your help.
I found the solution, I did as you say
.navtabs li a.navtab img{
margin-top: 5px;
}
:)

You are welcome.