toshudhiman
Hello sir,
Im face a problem here,
I want to put this box around my links like this >>
http://livemobilemovie.wapka.me/site_36.xhtml <<
For this i use a custom css given below.
text-align: left; background: #222222; color: white; border: 3px solid #303030; font-size: 17px; padding: 6px;
I works fine in wapka site. But when i use this css in xtgem site, in the option CSS ,Then its not work fine.
Problem is its nt fit to the width of the page like it fits in wapka.
And also it works with text blocks. But not with the link blocks.
See screenshot .
Thankx in advance.
Solve my problem please.
toshudhiman
toshudhiman Screen shot.
Red light is a link and its css nt fits to the width of the page.
TechnoSparks
toshudhiman Add this:
if it does not work, you can always do some more forcing!
I strongly recommend you to learn CSS. This will give you more experience on solving problems and also create new styles!
toshudhiman
TechnoSparks Ok but where to put this code ?
And i want to know how to put this css around the links >http://livemobilemovie.wapka.me/site_36.xhtml <<
Give me this css code so that i can put it in custom css by making a new CSS.
TechnoSparks
toshudhiman Here's the code. I have inspected the site and copied its CSS values
.boxlink
{
text-align: left;
background: #222222;
color: white;
border: 3px solid #303030;
font-size: 17px;
padding: 6px;
display: block;
}
Copy code
You can use the file
global_stylesheet.css at the root of your file storage to apply CSS on all over your website. Copy the code above and paste it into that file.
If you want to apply the style on a link, make sure to choose "
boxlink" in the "Class" dropdown when you are adding a block.
toshudhiman
TechnoSparks Tell me 1 more thing.
How to make a border around my full site. Border of 3px.
mv
toshudhiman Easiest way, I really do not recommend this:
html
{
background: #6bc135;
padding: 3px;
}
Copy code
about better ways you could read
here
toshudhiman
mv How to remove underline from links on my site